similator


Namesimilator JSON
Version 0.2.0 PyPI version JSON
download
home_pageNone
SummaryA powerful text similarity module with Rust optimizations.
upload_time2024-08-31 22:25:48
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords similarity similar fuzzy validate search compare text
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
  <picture>
    <source srcset="https://i.imgur.com/jrmxyXR.png" media="(prefers-color-scheme: dark)">
    <img src="https://i.imgur.com/mQE6c9Q.png" />
  </picture>
</div>

-----------------

[![Stars](https://img.shields.io/github/stars/DSAV-code/similator?style=social)](https://github.com/DSAV-code/similator)
[![Pypi Version](https://img.shields.io/pypi/v/similator)](https://pypi.org/project/similator)
[![Documentation Status](https://readthedocs.org/projects/similator/badge/?version=latest)](https://similator.readthedocs.io/en/latest/?badge=latest)
[![License GPL v3.0](https://img.shields.io/badge/license-GPL%20v3.0-blue.svg)](LICENSE)
[![GitHub issues](https://img.shields.io/github/issues/DSAV-code/similator.svg)](https://github.com/DSAV-code/similator/issues)
[![Python Version](https://img.shields.io/badge/python-3.8%2B-brightgreen.svg)](https://www.python.org/downloads/)


# Similator: Revolutionary Python-Rust Hybrid for Lightning-Fast Text Validation

**Similator** is a cutting-edge Python library that leverages the power of Rust to offer unparalleled speed and efficiency in text validation and comparison. By combining the ease of Python with the performance of Rust, Similator achieves up to 10x faster processing compared to traditional implementations. This fusion represents a significant leap forward in text processing technology.

## 🚀 Features

- **Blazing-Fast Performance**: Experience up to 10x speed improvement with our Rust-powered engine, drastically reducing the time required for complex text operations.
- **Hybrid Python-Rust Implementation**: Seamlessly integrates Python and Rust to deliver optimal performance without compromising on ease of use.
- **Customizable Similarity Search**: Adjust similarity thresholds to find the most relevant matches quickly and accurately.
- **Automatic Caching**: Enhance performance with optional caching for repetitive searches, making your workflow more efficient.
- **Advanced Scoring Mechanism**: Benefit from an improved scoring system that ensures meaningful similarity results based on your criteria.
- **Flexible Case Sensitivity**: Choose between case-sensitive and case-insensitive comparisons to suit your specific needs.

---

## 📦 Installation

Install Similator quickly and easily using pip:

```bash
pip install similator
```

## 🌟 Quickstart Guide

Here's a quick example to get you up and running with Similator:

### 1. Import and Initialize

```python
from similator import TextSimilator, ValidData

# Example data
valid_strings = ["Hello", "World", "Text", "Example", "Python"]

# Initialize ValidData
valid_data_instance = ValidData(valid_strings, encoding='utf-8')

# Initialize TextSimilator with ValidData
text_similator = TextSimilator(valid_data_instance, encoding='utf-8', case_sensitive=False)
```

### 2. Perform a Search

Search for a string within the valid data with a similarity threshold:

```python
search_value = "hello"
results = text_similator.search(search_value, threshold=0.85)
print(results)
# Output: [('hello', 2.0)]
```

### 3. Compare Two Strings

Directly compare two strings to obtain a similarity score:

```python
value1 = "hello"
value2 = "hell"
similarity_score = text_similator.compare(value1, value2)
print(similarity_score)
# Output: 1.94
```

## Advanced Usage

### Enabling Caching for Repeated Searches

If your application involves repeated searches with similar queries, you can enable caching to improve performance:

```python
# Enable caching with a maximum size of 50 cached results
text_similator_with_cache = TextSimilator(valid_data_instance, auto_cached=True, max_cache_size=50)

# Perform a search and it will be cached
results_cached = text_similator_with_cache.search("python", threshold=0.9)
```

### Exporting and Loading Cached Data

You can export the cache to a file and reload it later for persistent storage:

```python
# Export the current cache to a JSON file
text_similator_with_cache.memory.export_memory("cache.json")

# Load the cache from a JSON file
text_similator_with_cache.memory.load_memory("cache.json")
```

---

## 💬 Contact

If you have any questions, suggestions, or just want to say hello, feel free to contact me:

- **Email**: sanandresvascodiego@gmail.com
- **GitHub**: [DSAV-code](https://github.com/DSAV-code)
- **Twitter/X**: [@dsav_v2](https://twitter.com/dsav_v2)

## 🛠️ Contributing

Contributions are welcome! If you have any ideas, suggestions, or issues, feel free to open an issue or submit a pull request.

## 📝 License

This project is licensed under the GNU General Public License v3.0 - see the [LICENSE](LICENSE) file for details.

---


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "similator",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "similarity, similar, fuzzy, validate, search, compare, text",
    "author": null,
    "author_email": "Diego San Andres Vasco <sanandresvascodiego@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/43/ef/1bd5bace9baf157078837682a7087c7301a2578fa53979629fe8ede63172/similator-0.2.0.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n  <picture>\n    <source srcset=\"https://i.imgur.com/jrmxyXR.png\" media=\"(prefers-color-scheme: dark)\">\n    <img src=\"https://i.imgur.com/mQE6c9Q.png\" />\n  </picture>\n</div>\n\n-----------------\n\n[![Stars](https://img.shields.io/github/stars/DSAV-code/similator?style=social)](https://github.com/DSAV-code/similator)\n[![Pypi Version](https://img.shields.io/pypi/v/similator)](https://pypi.org/project/similator)\n[![Documentation Status](https://readthedocs.org/projects/similator/badge/?version=latest)](https://similator.readthedocs.io/en/latest/?badge=latest)\n[![License GPL v3.0](https://img.shields.io/badge/license-GPL%20v3.0-blue.svg)](LICENSE)\n[![GitHub issues](https://img.shields.io/github/issues/DSAV-code/similator.svg)](https://github.com/DSAV-code/similator/issues)\n[![Python Version](https://img.shields.io/badge/python-3.8%2B-brightgreen.svg)](https://www.python.org/downloads/)\n\n\n# Similator: Revolutionary Python-Rust Hybrid for Lightning-Fast Text Validation\n\n**Similator** is a cutting-edge Python library that leverages the power of Rust to offer unparalleled speed and efficiency in text validation and comparison. By combining the ease of Python with the performance of Rust, Similator achieves up to 10x faster processing compared to traditional implementations. This fusion represents a significant leap forward in text processing technology.\n\n## \ud83d\ude80 Features\n\n- **Blazing-Fast Performance**: Experience up to 10x speed improvement with our Rust-powered engine, drastically reducing the time required for complex text operations.\n- **Hybrid Python-Rust Implementation**: Seamlessly integrates Python and Rust to deliver optimal performance without compromising on ease of use.\n- **Customizable Similarity Search**: Adjust similarity thresholds to find the most relevant matches quickly and accurately.\n- **Automatic Caching**: Enhance performance with optional caching for repetitive searches, making your workflow more efficient.\n- **Advanced Scoring Mechanism**: Benefit from an improved scoring system that ensures meaningful similarity results based on your criteria.\n- **Flexible Case Sensitivity**: Choose between case-sensitive and case-insensitive comparisons to suit your specific needs.\n\n---\n\n## \ud83d\udce6 Installation\n\nInstall Similator quickly and easily using pip:\n\n```bash\npip install similator\n```\n\n## \ud83c\udf1f Quickstart Guide\n\nHere's a quick example to get you up and running with Similator:\n\n### 1. Import and Initialize\n\n```python\nfrom similator import TextSimilator, ValidData\n\n# Example data\nvalid_strings = [\"Hello\", \"World\", \"Text\", \"Example\", \"Python\"]\n\n# Initialize ValidData\nvalid_data_instance = ValidData(valid_strings, encoding='utf-8')\n\n# Initialize TextSimilator with ValidData\ntext_similator = TextSimilator(valid_data_instance, encoding='utf-8', case_sensitive=False)\n```\n\n### 2. Perform a Search\n\nSearch for a string within the valid data with a similarity threshold:\n\n```python\nsearch_value = \"hello\"\nresults = text_similator.search(search_value, threshold=0.85)\nprint(results)\n# Output: [('hello', 2.0)]\n```\n\n### 3. Compare Two Strings\n\nDirectly compare two strings to obtain a similarity score:\n\n```python\nvalue1 = \"hello\"\nvalue2 = \"hell\"\nsimilarity_score = text_similator.compare(value1, value2)\nprint(similarity_score)\n# Output: 1.94\n```\n\n## Advanced Usage\n\n### Enabling Caching for Repeated Searches\n\nIf your application involves repeated searches with similar queries, you can enable caching to improve performance:\n\n```python\n# Enable caching with a maximum size of 50 cached results\ntext_similator_with_cache = TextSimilator(valid_data_instance, auto_cached=True, max_cache_size=50)\n\n# Perform a search and it will be cached\nresults_cached = text_similator_with_cache.search(\"python\", threshold=0.9)\n```\n\n### Exporting and Loading Cached Data\n\nYou can export the cache to a file and reload it later for persistent storage:\n\n```python\n# Export the current cache to a JSON file\ntext_similator_with_cache.memory.export_memory(\"cache.json\")\n\n# Load the cache from a JSON file\ntext_similator_with_cache.memory.load_memory(\"cache.json\")\n```\n\n---\n\n## \ud83d\udcac Contact\n\nIf you have any questions, suggestions, or just want to say hello, feel free to contact me:\n\n- **Email**: sanandresvascodiego@gmail.com\n- **GitHub**: [DSAV-code](https://github.com/DSAV-code)\n- **Twitter/X**: [@dsav_v2](https://twitter.com/dsav_v2)\n\n## \ud83d\udee0\ufe0f Contributing\n\nContributions are welcome! If you have any ideas, suggestions, or issues, feel free to open an issue or submit a pull request.\n\n## \ud83d\udcdd License\n\nThis project is licensed under the GNU General Public License v3.0 - see the [LICENSE](LICENSE) file for details.\n\n---\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A powerful text similarity module with Rust optimizations.",
    "version": "0.2.0",
    "project_urls": null,
    "split_keywords": [
        "similarity",
        " similar",
        " fuzzy",
        " validate",
        " search",
        " compare",
        " text"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0643b05da16e7cf72077a1bd6861af4b474ef5cdfae53be1f464c985dd9f6aba",
                "md5": "428ad5076f2b7c996bc9880befc633e8",
                "sha256": "79349f7d612e531d5db896d40286bbd6c9602b2949b8eda1f1ad89bf98dd608a"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "428ad5076f2b7c996bc9880befc633e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 231861,
            "upload_time": "2024-08-31T22:23:21",
            "upload_time_iso_8601": "2024-08-31T22:23:21.974577Z",
            "url": "https://files.pythonhosted.org/packages/06/43/b05da16e7cf72077a1bd6861af4b474ef5cdfae53be1f464c985dd9f6aba/similator-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08e1fa19a7bdafee9dad082174a390a92f510d9774c842f15d9362dfdf5fcb06",
                "md5": "2462804cffe5a00161b261284ad67bdf",
                "sha256": "0ccb675d086d013ac2c362582eb7f25277307ce89e5adb5369727a05694d8d12"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2462804cffe5a00161b261284ad67bdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 270618,
            "upload_time": "2024-08-31T22:23:23",
            "upload_time_iso_8601": "2024-08-31T22:23:23.755556Z",
            "url": "https://files.pythonhosted.org/packages/08/e1/fa19a7bdafee9dad082174a390a92f510d9774c842f15d9362dfdf5fcb06/similator-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1c062a34073fd79ba9234129649a1673026fff10c8d93ef53b8f6866b1218e5",
                "md5": "667984fd4a38f50ae278707ba1fc8365",
                "sha256": "bd5d29eda889c00b13067bd5e5a64e45dcd10bae6dea1924091931c2b38b5778"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "667984fd4a38f50ae278707ba1fc8365",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 269763,
            "upload_time": "2024-08-31T22:23:25",
            "upload_time_iso_8601": "2024-08-31T22:23:25.426420Z",
            "url": "https://files.pythonhosted.org/packages/e1/c0/62a34073fd79ba9234129649a1673026fff10c8d93ef53b8f6866b1218e5/similator-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83062a795afc1fd6adfeb06d8e1337f3da8834e88ffc927f3137aa943f6734b6",
                "md5": "563e45b10fc39a7599a9e97384e8cc92",
                "sha256": "054ce7d938a5a407433adc87a4e4fc1d6274bc3959475a4a3de70188b4d82021"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "563e45b10fc39a7599a9e97384e8cc92",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 298026,
            "upload_time": "2024-08-31T22:23:27",
            "upload_time_iso_8601": "2024-08-31T22:23:27.425961Z",
            "url": "https://files.pythonhosted.org/packages/83/06/2a795afc1fd6adfeb06d8e1337f3da8834e88ffc927f3137aa943f6734b6/similator-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d339b71bd34458e1bc05f9d464286b95fc148906fb3f293d0e072870bf3c80e",
                "md5": "d3a49b3fa40146a57a6252150b9de12e",
                "sha256": "81fa9b928717e6009c52eba6e90fe65fc80850315deafbb3eb48d0c4a77c08e8"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d3a49b3fa40146a57a6252150b9de12e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 306306,
            "upload_time": "2024-08-31T22:23:28",
            "upload_time_iso_8601": "2024-08-31T22:23:28.927617Z",
            "url": "https://files.pythonhosted.org/packages/5d/33/9b71bd34458e1bc05f9d464286b95fc148906fb3f293d0e072870bf3c80e/similator-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48f6d38b4cf3d31fecba2817735cf1dc5a79a47720a2a0456701308d5c20010b",
                "md5": "994ecc70b3e2268184d8c3ce36dd7e2e",
                "sha256": "6fae9dc081f7478292e569c3dba118300b9d36362b1d6579bb56e8b142443e7c"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "994ecc70b3e2268184d8c3ce36dd7e2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 261573,
            "upload_time": "2024-08-31T22:23:30",
            "upload_time_iso_8601": "2024-08-31T22:23:30.351595Z",
            "url": "https://files.pythonhosted.org/packages/48/f6/d38b4cf3d31fecba2817735cf1dc5a79a47720a2a0456701308d5c20010b/similator-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c773156eba57c4ac7bed7721a961a55b5b9c775c1ebf60d612ec04079773a065",
                "md5": "5f4f1604a6e31612b35bfd2af28811ce",
                "sha256": "846aa24efc87437d71693ab48e74c81ca3dc1cb2122a3e092228ee253099fc1e"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5f4f1604a6e31612b35bfd2af28811ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 274437,
            "upload_time": "2024-08-31T22:23:31",
            "upload_time_iso_8601": "2024-08-31T22:23:31.548172Z",
            "url": "https://files.pythonhosted.org/packages/c7/73/156eba57c4ac7bed7721a961a55b5b9c775c1ebf60d612ec04079773a065/similator-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de0f84ccca4ce6b932befd9998dd085014969e1a8abcf9e77f23c63f3263667a",
                "md5": "bb3801e21779e098af54489f78fac44b",
                "sha256": "8f38cf32d643cebe0702e23f40792794e17643d1b30293cbcc559f449d977af3"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bb3801e21779e098af54489f78fac44b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 448597,
            "upload_time": "2024-08-31T22:23:33",
            "upload_time_iso_8601": "2024-08-31T22:23:33.336519Z",
            "url": "https://files.pythonhosted.org/packages/de/0f/84ccca4ce6b932befd9998dd085014969e1a8abcf9e77f23c63f3263667a/similator-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55f514a7b67984377d5cbcefc2f5e0d82dc0b419aaaeafd0a8d35a478e35a7c1",
                "md5": "eb693480bb202635ba859113c35ed366",
                "sha256": "14f11849f56a73cafc161ecda46a21dd45df0d684f337d5663ae7d2c4b82e12e"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "eb693480bb202635ba859113c35ed366",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 531973,
            "upload_time": "2024-08-31T22:23:35",
            "upload_time_iso_8601": "2024-08-31T22:23:35.146744Z",
            "url": "https://files.pythonhosted.org/packages/55/f5/14a7b67984377d5cbcefc2f5e0d82dc0b419aaaeafd0a8d35a478e35a7c1/similator-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52d1ba093df351dae34d46bdd661373f1febaeefe3f5dd962808605b40ebc801",
                "md5": "3bb5f7080f3e744ee47335b2e2acdafa",
                "sha256": "891131c38f13a0e316d52c66b1ecb08d93fb1bbffddfb3b01e519cf4dbf55095"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3bb5f7080f3e744ee47335b2e2acdafa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 454007,
            "upload_time": "2024-08-31T22:23:36",
            "upload_time_iso_8601": "2024-08-31T22:23:36.885358Z",
            "url": "https://files.pythonhosted.org/packages/52/d1/ba093df351dae34d46bdd661373f1febaeefe3f5dd962808605b40ebc801/similator-0.2.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "204f41870475712f0b00d6d9bfbfd01a8aaa0adb7d34663c1f9b3802f14cdb14",
                "md5": "1cf1fc77a09ee68237152ca819c0923f",
                "sha256": "e8125daae2bbfeb56c4621bdb696df2e62a41524963e636d36feab32238f87cb"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1cf1fc77a09ee68237152ca819c0923f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 432087,
            "upload_time": "2024-08-31T22:23:38",
            "upload_time_iso_8601": "2024-08-31T22:23:38.609964Z",
            "url": "https://files.pythonhosted.org/packages/20/4f/41870475712f0b00d6d9bfbfd01a8aaa0adb7d34663c1f9b3802f14cdb14/similator-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc65a15a448a89ad23d421b0767dacd538c559ad1657a08b58bf9df2a41d43f0",
                "md5": "7ce32a76d08406ca8454b134bcb19c4a",
                "sha256": "874e187574a2c07de5f8a23dd6c46e18df7c7dbbb6f3106ff4336f22d81ee4b0"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "7ce32a76d08406ca8454b134bcb19c4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 130290,
            "upload_time": "2024-08-31T22:23:40",
            "upload_time_iso_8601": "2024-08-31T22:23:40.508079Z",
            "url": "https://files.pythonhosted.org/packages/cc/65/a15a448a89ad23d421b0767dacd538c559ad1657a08b58bf9df2a41d43f0/similator-0.2.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6ae98e3269282e8cd19ae70f7b85c9b7db7c025c449cf9bbe76dc7da8f4bab9",
                "md5": "b6b7e5343647d686d0c646511afa433f",
                "sha256": "b21c1fb49df62471e2f52b655916cb70cd939f54f8d47fc6f14a4c52d2d16716"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b6b7e5343647d686d0c646511afa433f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 133876,
            "upload_time": "2024-08-31T22:23:42",
            "upload_time_iso_8601": "2024-08-31T22:23:42.280556Z",
            "url": "https://files.pythonhosted.org/packages/a6/ae/98e3269282e8cd19ae70f7b85c9b7db7c025c449cf9bbe76dc7da8f4bab9/similator-0.2.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20820da4775390d21e01df393b2492c510d2a6aa87776644a9dbb6347a7fd9a9",
                "md5": "0a6f57ba5e4472a96cf5484bb750e219",
                "sha256": "befb7d56280b7d66b5c97a6ce29a7828afccad9f71e9a8045fd97ae41fb47832"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a6f57ba5e4472a96cf5484bb750e219",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 230978,
            "upload_time": "2024-08-31T22:23:43",
            "upload_time_iso_8601": "2024-08-31T22:23:43.940930Z",
            "url": "https://files.pythonhosted.org/packages/20/82/0da4775390d21e01df393b2492c510d2a6aa87776644a9dbb6347a7fd9a9/similator-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89202969885ffcadd10137f6efab71bb83551a3cb32b6607743ee6411737ac34",
                "md5": "8dcc1202a650eaa09b461655c133bdf2",
                "sha256": "923fe7aaa8f435c13aacad828243217a34e1e9dc836f71fad7a6df62fe56c288"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8dcc1202a650eaa09b461655c133bdf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 231859,
            "upload_time": "2024-08-31T22:23:45",
            "upload_time_iso_8601": "2024-08-31T22:23:45.674462Z",
            "url": "https://files.pythonhosted.org/packages/89/20/2969885ffcadd10137f6efab71bb83551a3cb32b6607743ee6411737ac34/similator-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c078c49def56b71bca3d34c735259b680cda869394d32eb80baa4d794058081",
                "md5": "a6fe058488fa87340ffb45627f489c64",
                "sha256": "ceb57609edadf1e95d154f00e7c15b8388f6d5930920f62ed9362d0a02332c53"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a6fe058488fa87340ffb45627f489c64",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 270618,
            "upload_time": "2024-08-31T22:23:46",
            "upload_time_iso_8601": "2024-08-31T22:23:46.848594Z",
            "url": "https://files.pythonhosted.org/packages/7c/07/8c49def56b71bca3d34c735259b680cda869394d32eb80baa4d794058081/similator-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e96b3b359411728a6ade7bbcc39f82f8b393ea1edaba5a36bbe1a7a281f5f5f8",
                "md5": "45f768e492e4dd6a03540a0600f8c556",
                "sha256": "71a51d81f7fde56d2466c0b4f3de7228b76ebd9e2f2704a754af259809757ee6"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "45f768e492e4dd6a03540a0600f8c556",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 269764,
            "upload_time": "2024-08-31T22:23:48",
            "upload_time_iso_8601": "2024-08-31T22:23:48.432138Z",
            "url": "https://files.pythonhosted.org/packages/e9/6b/3b359411728a6ade7bbcc39f82f8b393ea1edaba5a36bbe1a7a281f5f5f8/similator-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0eda4145ac77c36e18031b030d43bbbc1f7bb9a1e67ee90e290b5aae51853ee",
                "md5": "b1f2bce10b618676a30341f24a330ff8",
                "sha256": "6969f24f390fb715a1b7961f28ce58c121b803a7201fb9631b5aabfcfcb77d03"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b1f2bce10b618676a30341f24a330ff8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 298025,
            "upload_time": "2024-08-31T22:23:50",
            "upload_time_iso_8601": "2024-08-31T22:23:50.117388Z",
            "url": "https://files.pythonhosted.org/packages/d0/ed/a4145ac77c36e18031b030d43bbbc1f7bb9a1e67ee90e290b5aae51853ee/similator-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40e2ad1f030fccb6f901d61d81496f7ae46c92a07fffa8ef456cc66a2c50a265",
                "md5": "ce6d26e5ed05bf7185b97a9b39090fb9",
                "sha256": "acf08b4566fcbaa2a5b0e49f112e1ae90333217d0fa97b4ab4a82dbc6a6b569f"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ce6d26e5ed05bf7185b97a9b39090fb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 306306,
            "upload_time": "2024-08-31T22:23:51",
            "upload_time_iso_8601": "2024-08-31T22:23:51.650665Z",
            "url": "https://files.pythonhosted.org/packages/40/e2/ad1f030fccb6f901d61d81496f7ae46c92a07fffa8ef456cc66a2c50a265/similator-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "682935efc4b3a724e99412a90c860c59dba0f5efd32d92baa3e3772c4123d5ef",
                "md5": "b070db60c2bf80ba62c4407b030148ba",
                "sha256": "77a26c0ac9ebb0a34e1672f8e72c0de62db95db0ff630ce94387aa9c69e5b25d"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b070db60c2bf80ba62c4407b030148ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 261573,
            "upload_time": "2024-08-31T22:23:52",
            "upload_time_iso_8601": "2024-08-31T22:23:52.904166Z",
            "url": "https://files.pythonhosted.org/packages/68/29/35efc4b3a724e99412a90c860c59dba0f5efd32d92baa3e3772c4123d5ef/similator-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52e3751fa10e51ba4433d7e437427cce7f8c84865d97944394da4dc5933482c3",
                "md5": "c965691febebae6982e7ec2feeabb4d5",
                "sha256": "aacc34edec94ac2d98cc4b8f8de28242c92b971563e24c47399d043eb9353041"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c965691febebae6982e7ec2feeabb4d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 274434,
            "upload_time": "2024-08-31T22:23:54",
            "upload_time_iso_8601": "2024-08-31T22:23:54.870069Z",
            "url": "https://files.pythonhosted.org/packages/52/e3/751fa10e51ba4433d7e437427cce7f8c84865d97944394da4dc5933482c3/similator-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba213b43f3d06b411e965b01204a216eb04a634559eb542a8779c16c584c01f1",
                "md5": "16c8797b4fe74c9b1669941c41ee1125",
                "sha256": "6121faa4a165583217c8a9b734717c5acbd0b53ce60ccde2ac29ae975335134b"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "16c8797b4fe74c9b1669941c41ee1125",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 448599,
            "upload_time": "2024-08-31T22:23:56",
            "upload_time_iso_8601": "2024-08-31T22:23:56.512655Z",
            "url": "https://files.pythonhosted.org/packages/ba/21/3b43f3d06b411e965b01204a216eb04a634559eb542a8779c16c584c01f1/similator-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b22a7af8563f8e9808d9e53b1acff8d76bd62805895c79a96894ed28f7ea15d2",
                "md5": "e26f2d06bd87ee208a83c3fa56db6f35",
                "sha256": "f20d224693bee161bb5cbca226bea492dc0ac23d394b8f0e9a639ab908198fb7"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e26f2d06bd87ee208a83c3fa56db6f35",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 531975,
            "upload_time": "2024-08-31T22:23:57",
            "upload_time_iso_8601": "2024-08-31T22:23:57.831406Z",
            "url": "https://files.pythonhosted.org/packages/b2/2a/7af8563f8e9808d9e53b1acff8d76bd62805895c79a96894ed28f7ea15d2/similator-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb046821cf38dac626d2aec93094ea0272512e1ccbde0e614c12e8e0732204bc",
                "md5": "a10ebc5b04a2105374b6e8f886df3022",
                "sha256": "506cf7a2c87bb0eb25e4bb43004456b7be6047ff35d8cc05a01363007371de25"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a10ebc5b04a2105374b6e8f886df3022",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 454010,
            "upload_time": "2024-08-31T22:23:59",
            "upload_time_iso_8601": "2024-08-31T22:23:59.777950Z",
            "url": "https://files.pythonhosted.org/packages/fb/04/6821cf38dac626d2aec93094ea0272512e1ccbde0e614c12e8e0732204bc/similator-0.2.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3ead67e00162f5afbac894f6f733d06e2f50ad4199d10d50eb3a534a5d7f83d",
                "md5": "169c4f7aeeeaa67340d279ae8abe81f9",
                "sha256": "4b9c6041d0638dfb4d73a0cc3e4aa45c3a30ac417b5695eabf7bd1290dbfde25"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "169c4f7aeeeaa67340d279ae8abe81f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 432087,
            "upload_time": "2024-08-31T22:24:00",
            "upload_time_iso_8601": "2024-08-31T22:24:00.999282Z",
            "url": "https://files.pythonhosted.org/packages/b3/ea/d67e00162f5afbac894f6f733d06e2f50ad4199d10d50eb3a534a5d7f83d/similator-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae6995b44112ba319cbb9f42d0042f8f0b681cc06029e4a886a41c56777ef839",
                "md5": "5b32aeb6c761c3dd7e3042e3ed9f65a6",
                "sha256": "e0c68ef3a265cd491c68241386c12d63b0b0a43500406dbf308ef3d48d105828"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "5b32aeb6c761c3dd7e3042e3ed9f65a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 130288,
            "upload_time": "2024-08-31T22:24:02",
            "upload_time_iso_8601": "2024-08-31T22:24:02.072255Z",
            "url": "https://files.pythonhosted.org/packages/ae/69/95b44112ba319cbb9f42d0042f8f0b681cc06029e4a886a41c56777ef839/similator-0.2.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0de91eda56878887bd98d70d316696597dcca9c87282abbc313bd71f75e23d7c",
                "md5": "42d58e95a8542bdeeea25ae6341b66f3",
                "sha256": "ae05c576dcdfe89075e7fadb8d68b469800ecc3fc8a0ec6829dd9b5b43bb5c5f"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "42d58e95a8542bdeeea25ae6341b66f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 133868,
            "upload_time": "2024-08-31T22:24:03",
            "upload_time_iso_8601": "2024-08-31T22:24:03.468671Z",
            "url": "https://files.pythonhosted.org/packages/0d/e9/1eda56878887bd98d70d316696597dcca9c87282abbc313bd71f75e23d7c/similator-0.2.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8dd39a3353a8765372ebbadbdbaff3481e52a3adb426ffabeaa4a02f52daf3e",
                "md5": "dc44778fbbd8784858c012572e181408",
                "sha256": "f2c25869e808b300da6c11457f1984ddc0a0bbe5f58251dd42caaac8ca142152"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc44778fbbd8784858c012572e181408",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 231008,
            "upload_time": "2024-08-31T22:24:04",
            "upload_time_iso_8601": "2024-08-31T22:24:04.560513Z",
            "url": "https://files.pythonhosted.org/packages/a8/dd/39a3353a8765372ebbadbdbaff3481e52a3adb426ffabeaa4a02f52daf3e/similator-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09ebd590544bd0f1b2a22316319be287f2e80bae79c180f4c3810d2cf4c78759",
                "md5": "099089caa7831f169a2c12d66f616504",
                "sha256": "9aecf1bc7b8a2d37ad5a89b49ef004f136dea63a7c4af1e6190b99fa5250dc34"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "099089caa7831f169a2c12d66f616504",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 231739,
            "upload_time": "2024-08-31T22:24:06",
            "upload_time_iso_8601": "2024-08-31T22:24:06.439066Z",
            "url": "https://files.pythonhosted.org/packages/09/eb/d590544bd0f1b2a22316319be287f2e80bae79c180f4c3810d2cf4c78759/similator-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aea4907b3f04a46d50ba5308bd83e9debd314f5d7ed0a8401e7f02a64e67bea5",
                "md5": "aba0bf7690f56aff1b834e2292703160",
                "sha256": "9d0d331d574ef5df5c8e4b50f43288d061785b8481f7567d1a44247978e33553"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aba0bf7690f56aff1b834e2292703160",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 270787,
            "upload_time": "2024-08-31T22:24:07",
            "upload_time_iso_8601": "2024-08-31T22:24:07.626870Z",
            "url": "https://files.pythonhosted.org/packages/ae/a4/907b3f04a46d50ba5308bd83e9debd314f5d7ed0a8401e7f02a64e67bea5/similator-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21f16e52e159ef40b52612ac7be4c473cc940308450448cae6bf835f871adc3a",
                "md5": "fb23d90aff5b32695c8b8e1235aae2bf",
                "sha256": "6b62be4a248c9d17b38dc5a8ce28c711c75605c0dffc552cab111ff8eed993f3"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fb23d90aff5b32695c8b8e1235aae2bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 269831,
            "upload_time": "2024-08-31T22:24:08",
            "upload_time_iso_8601": "2024-08-31T22:24:08.865496Z",
            "url": "https://files.pythonhosted.org/packages/21/f1/6e52e159ef40b52612ac7be4c473cc940308450448cae6bf835f871adc3a/similator-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48c2be71072899ab8c3700ab1ab8b2cd90f15aadd230795468ce5a1d49c2a6e8",
                "md5": "e0a2581c382d118cf7ad7caea23e1180",
                "sha256": "7b070ae3367343d04e2255157cf90b9511841c1291875b91c266e5eab2c8cb8a"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e0a2581c382d118cf7ad7caea23e1180",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 298203,
            "upload_time": "2024-08-31T22:24:10",
            "upload_time_iso_8601": "2024-08-31T22:24:10.181782Z",
            "url": "https://files.pythonhosted.org/packages/48/c2/be71072899ab8c3700ab1ab8b2cd90f15aadd230795468ce5a1d49c2a6e8/similator-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35ceb1771bd66b678fb8cc53ae9dc33a9fa31038e0f7a00cbdb13aecc9e8baaf",
                "md5": "02512fd18e1d8cd80f2cbd642f977ec5",
                "sha256": "ecffa778220e8574a0a5a28ea083e98c52c32ef1d4e48a7adffb04b15a176132"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "02512fd18e1d8cd80f2cbd642f977ec5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 306117,
            "upload_time": "2024-08-31T22:24:11",
            "upload_time_iso_8601": "2024-08-31T22:24:11.610062Z",
            "url": "https://files.pythonhosted.org/packages/35/ce/b1771bd66b678fb8cc53ae9dc33a9fa31038e0f7a00cbdb13aecc9e8baaf/similator-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25ffb0be99898b90c3c65ae57e0dcd0368e787cc098c6ede2f1b401224dd72f6",
                "md5": "ed36e75419e16a553de2b0a6762a1115",
                "sha256": "aad424f724152eeae7b3f9c9a0cc3d5b4e1577928595425e4314a3a2f878aff9"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed36e75419e16a553de2b0a6762a1115",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 261605,
            "upload_time": "2024-08-31T22:24:13",
            "upload_time_iso_8601": "2024-08-31T22:24:13.044992Z",
            "url": "https://files.pythonhosted.org/packages/25/ff/b0be99898b90c3c65ae57e0dcd0368e787cc098c6ede2f1b401224dd72f6/similator-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73de81d7d43956f673d60c0279a3f84ae1cb213f4974c5ba3448534641f07aef",
                "md5": "85449468931f64ce579f2efad227b171",
                "sha256": "969ecf0dab6e21ed6193e32cf2e7ed4fc0ea7828296a7eace576b3289a71c816"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "85449468931f64ce579f2efad227b171",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 274500,
            "upload_time": "2024-08-31T22:24:14",
            "upload_time_iso_8601": "2024-08-31T22:24:14.210133Z",
            "url": "https://files.pythonhosted.org/packages/73/de/81d7d43956f673d60c0279a3f84ae1cb213f4974c5ba3448534641f07aef/similator-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ad9b927282e845fe58e8d103b0df31344b1c58ca2e4b345db966b5848093a73",
                "md5": "80f71b81dd40120347bc713fdd280c86",
                "sha256": "64324b7876bd328b58b779899f147296fec2548b9163bd3c1f86912846f12cfc"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "80f71b81dd40120347bc713fdd280c86",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 448729,
            "upload_time": "2024-08-31T22:24:15",
            "upload_time_iso_8601": "2024-08-31T22:24:15.425189Z",
            "url": "https://files.pythonhosted.org/packages/0a/d9/b927282e845fe58e8d103b0df31344b1c58ca2e4b345db966b5848093a73/similator-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2289e3886c6066aed1d1a96f14d10c83ba18de591a4ce089fa50b792a878222",
                "md5": "bc4f2a74e17a12d7c244445a3dff7665",
                "sha256": "ec45542e717c684e6a80743ff2adc405d99fd45ec5aecdaba1748ba5c37a182e"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bc4f2a74e17a12d7c244445a3dff7665",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 531966,
            "upload_time": "2024-08-31T22:24:17",
            "upload_time_iso_8601": "2024-08-31T22:24:17.223056Z",
            "url": "https://files.pythonhosted.org/packages/f2/28/9e3886c6066aed1d1a96f14d10c83ba18de591a4ce089fa50b792a878222/similator-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e37166f59f6ece813ea48f03a405e92bc56b4eb406990793c5d793bed8a7d5f",
                "md5": "6233825ed39d66eae996678cf4e6edac",
                "sha256": "25e3658717342d777637f721553ab8383f956302e91640be8f1e6ed60f81a2c0"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6233825ed39d66eae996678cf4e6edac",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 454079,
            "upload_time": "2024-08-31T22:24:18",
            "upload_time_iso_8601": "2024-08-31T22:24:18.694587Z",
            "url": "https://files.pythonhosted.org/packages/7e/37/166f59f6ece813ea48f03a405e92bc56b4eb406990793c5d793bed8a7d5f/similator-0.2.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d30eae09426738c8cb1878115d3dc139111b5a199d282c4d66a91b0d1b62309a",
                "md5": "f63c57eb61418fab288d9fcdce0fe401",
                "sha256": "faf25ed556707016f675fcc91681a5c4f5a2ef04b545260737964aa475eabd9b"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f63c57eb61418fab288d9fcdce0fe401",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 432110,
            "upload_time": "2024-08-31T22:24:20",
            "upload_time_iso_8601": "2024-08-31T22:24:20.499014Z",
            "url": "https://files.pythonhosted.org/packages/d3/0e/ae09426738c8cb1878115d3dc139111b5a199d282c4d66a91b0d1b62309a/similator-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd316ff90cd29e2251e76d15bc9d716448ce6c94c6e4c1ac3a829e25e29dae8f",
                "md5": "5a960ea1348d6e946a2473c93d22b3b6",
                "sha256": "99c51e1d5f21d7f3f8d7f53199c68f99a8baa44b8086fc094ff0fc77696f0ab6"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "5a960ea1348d6e946a2473c93d22b3b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 130314,
            "upload_time": "2024-08-31T22:24:22",
            "upload_time_iso_8601": "2024-08-31T22:24:22.188983Z",
            "url": "https://files.pythonhosted.org/packages/cd/31/6ff90cd29e2251e76d15bc9d716448ce6c94c6e4c1ac3a829e25e29dae8f/similator-0.2.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "308f47bb433deffa13cdafbb3b776b0d402021da3c465e6022e4248f3f9b642f",
                "md5": "d29bd13112e279eccb98e5b6834efed5",
                "sha256": "2178dbf9eae52f032417965408a326f81f570cf33995836c3da897bf9c8274bc"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d29bd13112e279eccb98e5b6834efed5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 133915,
            "upload_time": "2024-08-31T22:24:23",
            "upload_time_iso_8601": "2024-08-31T22:24:23.267091Z",
            "url": "https://files.pythonhosted.org/packages/30/8f/47bb433deffa13cdafbb3b776b0d402021da3c465e6022e4248f3f9b642f/similator-0.2.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dbd9c05e1313fac8b5c6814d62bf65e5577b3d49d5fb0c0bc7bc4414ecd0a55",
                "md5": "0b6c60fcf220e4b1247a848cdf549fe7",
                "sha256": "414e331cc38fea6c5f9efdf2780d3f9c045486920309dfec412197f51f61797b"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0b6c60fcf220e4b1247a848cdf549fe7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 270847,
            "upload_time": "2024-08-31T22:24:24",
            "upload_time_iso_8601": "2024-08-31T22:24:24.386500Z",
            "url": "https://files.pythonhosted.org/packages/8d/bd/9c05e1313fac8b5c6814d62bf65e5577b3d49d5fb0c0bc7bc4414ecd0a55/similator-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3aeebf1eee30526baf4c740b361f331d9622cebb12c381f728f03cd2c8c65732",
                "md5": "536d19c9af39984ac15b14c2622891a7",
                "sha256": "bde792cdd5e09ec1c1399612dbcdce9158028325ef8a0427451c3e0434710b18"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "536d19c9af39984ac15b14c2622891a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 269894,
            "upload_time": "2024-08-31T22:24:25",
            "upload_time_iso_8601": "2024-08-31T22:24:25.632819Z",
            "url": "https://files.pythonhosted.org/packages/3a/ee/bf1eee30526baf4c740b361f331d9622cebb12c381f728f03cd2c8c65732/similator-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44f3755c30ad3e0e9dbdfd3c83636e7258929b969d9b7e5ff9359f761f27dc31",
                "md5": "c208e9834d573e5c3f0fa8f6e1d7b47e",
                "sha256": "c7bca050b838ade3c449d94f18a987878187bf0cbb11beb1ed6a659b4254a2e8"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c208e9834d573e5c3f0fa8f6e1d7b47e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 297967,
            "upload_time": "2024-08-31T22:24:26",
            "upload_time_iso_8601": "2024-08-31T22:24:26.989400Z",
            "url": "https://files.pythonhosted.org/packages/44/f3/755c30ad3e0e9dbdfd3c83636e7258929b969d9b7e5ff9359f761f27dc31/similator-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5af52dc336f03aa730624637d3836f69c6cc92a6c8c067dbf8774d7763e60742",
                "md5": "eb36ab113d275f789e7d37e4dae1c983",
                "sha256": "208c338ff33fda46fe86cf39fa6c5f3b7fce3603370e027ac8cda69af0a1396d"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "eb36ab113d275f789e7d37e4dae1c983",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 306583,
            "upload_time": "2024-08-31T22:24:28",
            "upload_time_iso_8601": "2024-08-31T22:24:28.302591Z",
            "url": "https://files.pythonhosted.org/packages/5a/f5/2dc336f03aa730624637d3836f69c6cc92a6c8c067dbf8774d7763e60742/similator-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ae19bcd7c3b5af2831920a30069b1a6586817e892846d2ff96fd35e794c6056",
                "md5": "afcf6a6f300b387ffceaf58538f525cf",
                "sha256": "0d5e2c212d03e12f4bf432fda67f1872fbd4d3b4258cfcd343dba70e8a4973ce"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afcf6a6f300b387ffceaf58538f525cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 261513,
            "upload_time": "2024-08-31T22:24:30",
            "upload_time_iso_8601": "2024-08-31T22:24:30.050660Z",
            "url": "https://files.pythonhosted.org/packages/2a/e1/9bcd7c3b5af2831920a30069b1a6586817e892846d2ff96fd35e794c6056/similator-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b13cf13081c0a2b260c6a6c24b1147fa656027d1e95f350d5d343499c5e137e",
                "md5": "9b792f362f6f11b0aa9dfb32935a140b",
                "sha256": "7e263a4b9b76bd70703f044e395374033246281c9382a78f63051511c0e294b6"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9b792f362f6f11b0aa9dfb32935a140b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 274456,
            "upload_time": "2024-08-31T22:24:31",
            "upload_time_iso_8601": "2024-08-31T22:24:31.511727Z",
            "url": "https://files.pythonhosted.org/packages/6b/13/cf13081c0a2b260c6a6c24b1147fa656027d1e95f350d5d343499c5e137e/similator-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0158a76f14942e91bcc6ef408554e0edf31e63443cb9a2638eec5659b8dc438b",
                "md5": "503315f8b52b2f96beeaba13deb7b971",
                "sha256": "3761a6560c6c75a7e5fcb0319dc7d2b214f0326fe3def8dea17ed0bdda1cd605"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "503315f8b52b2f96beeaba13deb7b971",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 448676,
            "upload_time": "2024-08-31T22:24:34",
            "upload_time_iso_8601": "2024-08-31T22:24:34.113814Z",
            "url": "https://files.pythonhosted.org/packages/01/58/a76f14942e91bcc6ef408554e0edf31e63443cb9a2638eec5659b8dc438b/similator-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b301e78d64d7abc253d95aaec89bfc17573b56e1e1c59221d11247772fba5fb",
                "md5": "1a583c6c975ed8a928a768977b3f509e",
                "sha256": "1a77e4d711dedcb0fcf7047d6fb39af5922f432ce172fc88a5d6040d47aef18f"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1a583c6c975ed8a928a768977b3f509e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 532052,
            "upload_time": "2024-08-31T22:24:35",
            "upload_time_iso_8601": "2024-08-31T22:24:35.466157Z",
            "url": "https://files.pythonhosted.org/packages/6b/30/1e78d64d7abc253d95aaec89bfc17573b56e1e1c59221d11247772fba5fb/similator-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f87e7947dcee6cf5a4d6c7f0ccdb01c464352fff3864d790db093fb37fe36593",
                "md5": "ceebc320aa1ad1110a467924c78a2dc4",
                "sha256": "729d9611838dd449117d965d7e69f4e3ac299759a4ed2ed5e3e7517c0eb16b3a"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ceebc320aa1ad1110a467924c78a2dc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 454137,
            "upload_time": "2024-08-31T22:24:37",
            "upload_time_iso_8601": "2024-08-31T22:24:37.242635Z",
            "url": "https://files.pythonhosted.org/packages/f8/7e/7947dcee6cf5a4d6c7f0ccdb01c464352fff3864d790db093fb37fe36593/similator-0.2.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c3bd9268be948652c2d7de9551555e712c83141d58abab2f16fce09c81fa619",
                "md5": "cfd3c7111fbe562a79f5676777a42450",
                "sha256": "0baf55bbbcb7cca5e82e20146300a3ebc3f08689dda1a96375be760f060562dc"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfd3c7111fbe562a79f5676777a42450",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 432059,
            "upload_time": "2024-08-31T22:24:38",
            "upload_time_iso_8601": "2024-08-31T22:24:38.756656Z",
            "url": "https://files.pythonhosted.org/packages/7c/3b/d9268be948652c2d7de9551555e712c83141d58abab2f16fce09c81fa619/similator-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1b5700f111022fc6c291057e2c7820f7727759e23f8d995a8550237fdbfe63d",
                "md5": "aad1288bb79c0377b91d3ca7f654a650",
                "sha256": "89cfbd9a587ffa4cd03953b1d50aa667898df328c07ffb54b8b1077fc1f6c62e"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "aad1288bb79c0377b91d3ca7f654a650",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 130305,
            "upload_time": "2024-08-31T22:24:39",
            "upload_time_iso_8601": "2024-08-31T22:24:39.859935Z",
            "url": "https://files.pythonhosted.org/packages/f1/b5/700f111022fc6c291057e2c7820f7727759e23f8d995a8550237fdbfe63d/similator-0.2.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed8f4ec02cfa04b3349ba56bda5e2e3f9684a2057ec20eaeb065a974ec6f7265",
                "md5": "5d67c98ea31625fd790bbba525eda9c3",
                "sha256": "4eb7d927815f8b6413b4802cb5d6765726a95ddaa99adee7393116447c7a1396"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5d67c98ea31625fd790bbba525eda9c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 133854,
            "upload_time": "2024-08-31T22:24:41",
            "upload_time_iso_8601": "2024-08-31T22:24:41.369483Z",
            "url": "https://files.pythonhosted.org/packages/ed/8f/4ec02cfa04b3349ba56bda5e2e3f9684a2057ec20eaeb065a974ec6f7265/similator-0.2.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8b39b0e2380ce43293a765539363d9dc30734a152730323cbfc50a4005cec0d",
                "md5": "d261b78a3607f1db463b44356bc8f56d",
                "sha256": "74b5212d46c155acd5bbaaaea60ea27b71b31666cbd8d474fe50668a22783a38"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d261b78a3607f1db463b44356bc8f56d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 231606,
            "upload_time": "2024-08-31T22:24:43",
            "upload_time_iso_8601": "2024-08-31T22:24:43.664497Z",
            "url": "https://files.pythonhosted.org/packages/e8/b3/9b0e2380ce43293a765539363d9dc30734a152730323cbfc50a4005cec0d/similator-0.2.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d513808568e3414284434cd1f5f572382fce59aa1f0e91d1cfd7c4d66475e42c",
                "md5": "51a88e13dda2be730660bef81683bf37",
                "sha256": "f066ec5ae62af1db33b99d9f60a838ba0edf34f607ab2247210466f17483de6f"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "51a88e13dda2be730660bef81683bf37",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 270726,
            "upload_time": "2024-08-31T22:24:45",
            "upload_time_iso_8601": "2024-08-31T22:24:45.156906Z",
            "url": "https://files.pythonhosted.org/packages/d5/13/808568e3414284434cd1f5f572382fce59aa1f0e91d1cfd7c4d66475e42c/similator-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d29f772355193626c4a68b9bf2fcdb55ce90be8ac3b40a95d3a64300bfe6b45b",
                "md5": "f6d18c17be323159f9c2a1e5cf51a9a2",
                "sha256": "b8786177d83395ad92accc3c1f317236d90a2aa3f02fb86133899dce2613646e"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f6d18c17be323159f9c2a1e5cf51a9a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 269930,
            "upload_time": "2024-08-31T22:24:46",
            "upload_time_iso_8601": "2024-08-31T22:24:46.374724Z",
            "url": "https://files.pythonhosted.org/packages/d2/9f/772355193626c4a68b9bf2fcdb55ce90be8ac3b40a95d3a64300bfe6b45b/similator-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26c435986131907caf35ba116867a932ad35aafcdc45cf0f1fd994182cf6c0a7",
                "md5": "43cd5e93ae9a30c6dc90ed018506c6cb",
                "sha256": "98450a97953cf79f0e5a21a413766dd504e9c0542d2147af27044c0bf625d659"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "43cd5e93ae9a30c6dc90ed018506c6cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 298107,
            "upload_time": "2024-08-31T22:24:47",
            "upload_time_iso_8601": "2024-08-31T22:24:47.686960Z",
            "url": "https://files.pythonhosted.org/packages/26/c4/35986131907caf35ba116867a932ad35aafcdc45cf0f1fd994182cf6c0a7/similator-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7814a3dd5569f064f4f29e1e4b79f317c311c0b38ec5918e071898db9c49eb9c",
                "md5": "e507ba6a75b4335f3b2fb0636e5c7bd3",
                "sha256": "47f9260f33ec6a3b41bad903b2c13ccca4973ca39413e12182892b2bd97434e3"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e507ba6a75b4335f3b2fb0636e5c7bd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 306180,
            "upload_time": "2024-08-31T22:24:48",
            "upload_time_iso_8601": "2024-08-31T22:24:48.925550Z",
            "url": "https://files.pythonhosted.org/packages/78/14/a3dd5569f064f4f29e1e4b79f317c311c0b38ec5918e071898db9c49eb9c/similator-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6de3f55c2fa484671f4a6a014934bcc17be13c3d07666d329c48616f7b4e137",
                "md5": "2c0c753de6aadcc9fdcbe3a872b15fd7",
                "sha256": "8dfd3cc830b046c31b739f20a324bb93555b6f052f34001171d6b61e52b73d98"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c0c753de6aadcc9fdcbe3a872b15fd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 261551,
            "upload_time": "2024-08-31T22:24:50",
            "upload_time_iso_8601": "2024-08-31T22:24:50.183766Z",
            "url": "https://files.pythonhosted.org/packages/f6/de/3f55c2fa484671f4a6a014934bcc17be13c3d07666d329c48616f7b4e137/similator-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22b787e227bc767b3c6d18e1fb8ebf123124f21491d2aecbb5e0af2a4e9be668",
                "md5": "23d68949cedca46204b0d1f8245bcae0",
                "sha256": "aa9ec6eccb9c56657fe0fda96e84778f6eddac06e3493ae742d3013b830c8e3a"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "23d68949cedca46204b0d1f8245bcae0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 274424,
            "upload_time": "2024-08-31T22:24:54",
            "upload_time_iso_8601": "2024-08-31T22:24:54.057152Z",
            "url": "https://files.pythonhosted.org/packages/22/b7/87e227bc767b3c6d18e1fb8ebf123124f21491d2aecbb5e0af2a4e9be668/similator-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a38f37f3a57225449886739f91cb988c430e3cba6e65e7a8f6decc344307ef27",
                "md5": "8f6acb4824ff63a4b99fc468073b201b",
                "sha256": "6ebf94e14baeb362ef2c7a15b452842ef887c01363f09f23c3e37dfa5cd1552a"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8f6acb4824ff63a4b99fc468073b201b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 448655,
            "upload_time": "2024-08-31T22:24:56",
            "upload_time_iso_8601": "2024-08-31T22:24:56.778250Z",
            "url": "https://files.pythonhosted.org/packages/a3/8f/37f3a57225449886739f91cb988c430e3cba6e65e7a8f6decc344307ef27/similator-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "faad3fc34cf97dd01e49ef6200c47083db286c2da401236ca0aeb9f1c2b7b992",
                "md5": "8fde81425280aec5b37138aa901e7535",
                "sha256": "c3f8b0a0a8d128540a19f811c026185b0399d33c9589d8424994f9c07dde4493"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8fde81425280aec5b37138aa901e7535",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 532051,
            "upload_time": "2024-08-31T22:24:58",
            "upload_time_iso_8601": "2024-08-31T22:24:58.713936Z",
            "url": "https://files.pythonhosted.org/packages/fa/ad/3fc34cf97dd01e49ef6200c47083db286c2da401236ca0aeb9f1c2b7b992/similator-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60ba7fc07cddefdf1ba87f0baf3b98810a4001fe2e45bfa12889e7916a5f3961",
                "md5": "d5e7d2be2a08bb056b0575a43e7d4f8d",
                "sha256": "9c189742b37d08f15126677885d0e065a6c54a1305fab556cc7e6dfd46522077"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d5e7d2be2a08bb056b0575a43e7d4f8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 454219,
            "upload_time": "2024-08-31T22:25:00",
            "upload_time_iso_8601": "2024-08-31T22:25:00.313711Z",
            "url": "https://files.pythonhosted.org/packages/60/ba/7fc07cddefdf1ba87f0baf3b98810a4001fe2e45bfa12889e7916a5f3961/similator-0.2.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1369b787c7299562b1a052d312cf9ae502681c1c524c12cbf8c44b69933dc14",
                "md5": "44b2337b34992a0bccdf84d763347d68",
                "sha256": "08980b4bee5e1858393a4d3eb16291780277203ff55e559d7c3641e8f71dd8a9"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44b2337b34992a0bccdf84d763347d68",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 431980,
            "upload_time": "2024-08-31T22:25:01",
            "upload_time_iso_8601": "2024-08-31T22:25:01.698005Z",
            "url": "https://files.pythonhosted.org/packages/e1/36/9b787c7299562b1a052d312cf9ae502681c1c524c12cbf8c44b69933dc14/similator-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "050a49f8385704dee47520e83f2d4565aa8171d06f3d84c2d11638a2cc857e35",
                "md5": "8c3d42d386dbcf40354502bdb39a85fe",
                "sha256": "fc92e28c8d2b9537d4279713325c89029bff9aac7abfa4328252b23f2d3eb38d"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "8c3d42d386dbcf40354502bdb39a85fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 130355,
            "upload_time": "2024-08-31T22:25:02",
            "upload_time_iso_8601": "2024-08-31T22:25:02.958639Z",
            "url": "https://files.pythonhosted.org/packages/05/0a/49f8385704dee47520e83f2d4565aa8171d06f3d84c2d11638a2cc857e35/similator-0.2.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "125cee971ce0d738a32645cab21de842a9a345f390e75b058c70b5844e50b448",
                "md5": "4d437b099d216ebee4c5363e4f8fe1a8",
                "sha256": "417bbe8c3ac6f9501ee7645706222217faf9edd1bd441d4e1688d56147d4c802"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d437b099d216ebee4c5363e4f8fe1a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 133834,
            "upload_time": "2024-08-31T22:25:04",
            "upload_time_iso_8601": "2024-08-31T22:25:04.185097Z",
            "url": "https://files.pythonhosted.org/packages/12/5c/ee971ce0d738a32645cab21de842a9a345f390e75b058c70b5844e50b448/similator-0.2.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5c4c7cecd9daa6da14f4b9ae92d7e3880954e73002df95254cdf7e100fc22ec",
                "md5": "d142e197837f818595938c29330d0390",
                "sha256": "52b67a79acc77bd984f30d3dee0e6df9b0b3f43095ad479ba91be60299ee3b51"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d142e197837f818595938c29330d0390",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 271206,
            "upload_time": "2024-08-31T22:25:05",
            "upload_time_iso_8601": "2024-08-31T22:25:05.416975Z",
            "url": "https://files.pythonhosted.org/packages/c5/c4/c7cecd9daa6da14f4b9ae92d7e3880954e73002df95254cdf7e100fc22ec/similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4659f89c330a6894a27871a7a87fda74c82569830ffefc61ebd28cf9a7ac86ea",
                "md5": "09bbcfb86e42fc988bc4a308d0472a6f",
                "sha256": "8ceb0645b5871c4e40f231e161b5454d9c1a2469f9fa06552eebcc9eb1c37864"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "09bbcfb86e42fc988bc4a308d0472a6f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 269573,
            "upload_time": "2024-08-31T22:25:07",
            "upload_time_iso_8601": "2024-08-31T22:25:07.416240Z",
            "url": "https://files.pythonhosted.org/packages/46/59/f89c330a6894a27871a7a87fda74c82569830ffefc61ebd28cf9a7ac86ea/similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7da288b96c27df580e1b1ddecc1ea594e637aadee525dd921e00c29ad074dc6f",
                "md5": "1bd78562e0a2325ede40b09022b7e567",
                "sha256": "636fd0e5e11d7986ccb99952a4f33fcba65265e09b065cf03f14da42d2b4b313"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1bd78562e0a2325ede40b09022b7e567",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 297744,
            "upload_time": "2024-08-31T22:25:08",
            "upload_time_iso_8601": "2024-08-31T22:25:08.812888Z",
            "url": "https://files.pythonhosted.org/packages/7d/a2/88b96c27df580e1b1ddecc1ea594e637aadee525dd921e00c29ad074dc6f/similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f23b029a433ca872e2729fdc660b71f4a65463e601f05a33d27705c5919706e3",
                "md5": "30dc0a52d900c7a810f4bde2ce49f21f",
                "sha256": "6fc8287e28d68159559521a4772a75f5231a67c695c1b035ce48fba86cd207b4"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "30dc0a52d900c7a810f4bde2ce49f21f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 306161,
            "upload_time": "2024-08-31T22:25:10",
            "upload_time_iso_8601": "2024-08-31T22:25:10.133341Z",
            "url": "https://files.pythonhosted.org/packages/f2/3b/029a433ca872e2729fdc660b71f4a65463e601f05a33d27705c5919706e3/similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "646d3049b9eed8a1160bda9a4b160a75ecec11d88ce4fe456e7a4c626febcd5d",
                "md5": "b864811067a72498f64a9b1bd0630147",
                "sha256": "899d9cf86d29f46fed39161f39900c4a1a8e57ceb41e1c21d33ff3d69c4cbda0"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b864811067a72498f64a9b1bd0630147",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 261789,
            "upload_time": "2024-08-31T22:25:11",
            "upload_time_iso_8601": "2024-08-31T22:25:11.969422Z",
            "url": "https://files.pythonhosted.org/packages/64/6d/3049b9eed8a1160bda9a4b160a75ecec11d88ce4fe456e7a4c626febcd5d/similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f13e029562ae6d2ae626fbc55a2edd16d50484d983fb54e8f4be313e38c6d90",
                "md5": "c83b527cbc31ab56e665782ddc4a9988",
                "sha256": "01ab4e3baa05d1699e64e43e4b905f7a78e9bad5797a3375771f1457c827dbda"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c83b527cbc31ab56e665782ddc4a9988",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 274241,
            "upload_time": "2024-08-31T22:25:13",
            "upload_time_iso_8601": "2024-08-31T22:25:13.359665Z",
            "url": "https://files.pythonhosted.org/packages/1f/13/e029562ae6d2ae626fbc55a2edd16d50484d983fb54e8f4be313e38c6d90/similator-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4c6db4b75a32d153de3596f8dab43796fa9e7203b1a4073dbdc9da7e2b108f3",
                "md5": "3bb56ea0c2c6e87e47eb912e3a3c8904",
                "sha256": "34b42e100e6fe597680c830e56eae422da9090facadc3a7062f0707bdd150f21"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3bb56ea0c2c6e87e47eb912e3a3c8904",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 449039,
            "upload_time": "2024-08-31T22:25:14",
            "upload_time_iso_8601": "2024-08-31T22:25:14.758595Z",
            "url": "https://files.pythonhosted.org/packages/e4/c6/db4b75a32d153de3596f8dab43796fa9e7203b1a4073dbdc9da7e2b108f3/similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b87ea4bb1376a000dca5da2a6163cdb19b829ad3d98f0082a2560a5263165e1d",
                "md5": "9fd2cedd59107dcbce162e25b48b3bf8",
                "sha256": "7213065722051cc6593b8edbdbe6c9aaaf172db4c57242b7c99ec93c3a775036"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9fd2cedd59107dcbce162e25b48b3bf8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 531763,
            "upload_time": "2024-08-31T22:25:16",
            "upload_time_iso_8601": "2024-08-31T22:25:16.193482Z",
            "url": "https://files.pythonhosted.org/packages/b8/7e/a4bb1376a000dca5da2a6163cdb19b829ad3d98f0082a2560a5263165e1d/similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc1e36af1845248855363887488fb9205e5630bcf83dfa21a1fadc9c6cd211c6",
                "md5": "1dd909239c3bbdc7cf807d7f3e4cd955",
                "sha256": "a898fe9bc05c0bf66c19d893271deb9019716d5f7d759a9829470ab88c4476bc"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1dd909239c3bbdc7cf807d7f3e4cd955",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 453750,
            "upload_time": "2024-08-31T22:25:18",
            "upload_time_iso_8601": "2024-08-31T22:25:18.153154Z",
            "url": "https://files.pythonhosted.org/packages/bc/1e/36af1845248855363887488fb9205e5630bcf83dfa21a1fadc9c6cd211c6/similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eca0a148186149eac3e1868c8624c0776aeaab8d395b03a9c8f994fa8fdd377a",
                "md5": "75b873e5c461a24296800f082d2b8ab1",
                "sha256": "e75eb262ce58e99043a8b20de2db5dc9755c799e3803ce6dcf9f17b545b74d9d"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75b873e5c461a24296800f082d2b8ab1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 432366,
            "upload_time": "2024-08-31T22:25:19",
            "upload_time_iso_8601": "2024-08-31T22:25:19.562444Z",
            "url": "https://files.pythonhosted.org/packages/ec/a0/a148186149eac3e1868c8624c0776aeaab8d395b03a9c8f994fa8fdd377a/similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c14c6f583eefd5728f18c961b502dea5e2de49ca5cd878a9d057ff45b0928a6f",
                "md5": "fc7824cbc86952c4fb6927bf49319e00",
                "sha256": "5fb6c400600ae3e214fd90e79bfb68ddc893c8fd752209453ade0d3c67594035"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc7824cbc86952c4fb6927bf49319e00",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 271055,
            "upload_time": "2024-08-31T22:25:20",
            "upload_time_iso_8601": "2024-08-31T22:25:20.941375Z",
            "url": "https://files.pythonhosted.org/packages/c1/4c/6f583eefd5728f18c961b502dea5e2de49ca5cd878a9d057ff45b0928a6f/similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0a7e8474c51f4bb80a5c4d7ac1b0f7e8c55784dfdc43f441c08121088b19627",
                "md5": "0ad37a0020cd9ea964d1a4b60a655553",
                "sha256": "09769f6f7fc07265f64d33a5ea3d9f8b8ae019ede85c4dec0c174b783a1ea24c"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0ad37a0020cd9ea964d1a4b60a655553",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 269505,
            "upload_time": "2024-08-31T22:25:22",
            "upload_time_iso_8601": "2024-08-31T22:25:22.204888Z",
            "url": "https://files.pythonhosted.org/packages/a0/a7/e8474c51f4bb80a5c4d7ac1b0f7e8c55784dfdc43f441c08121088b19627/similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acbd6f939f6d8f24ba9a8091bb48daea334389ed8d96e98bd980254261070704",
                "md5": "4a1382d773cee2d2ce194322c5317305",
                "sha256": "70983bd6c342e48a825d427b4613860aadf0911dd24524f38b15970302476e4b"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4a1382d773cee2d2ce194322c5317305",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 297834,
            "upload_time": "2024-08-31T22:25:23",
            "upload_time_iso_8601": "2024-08-31T22:25:23.525867Z",
            "url": "https://files.pythonhosted.org/packages/ac/bd/6f939f6d8f24ba9a8091bb48daea334389ed8d96e98bd980254261070704/similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d36d2115efab00f161f8e0ed3b4923513add1160a9f35f1a7d620664716f52f6",
                "md5": "1cb63c4f71d96165c4ad240df63dcca2",
                "sha256": "347554437a1438b0dea93ca4d72ae2dd7fa71a97cdf1162b8ed0d5aebefcf4c9"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1cb63c4f71d96165c4ad240df63dcca2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 305702,
            "upload_time": "2024-08-31T22:25:25",
            "upload_time_iso_8601": "2024-08-31T22:25:25.623441Z",
            "url": "https://files.pythonhosted.org/packages/d3/6d/2115efab00f161f8e0ed3b4923513add1160a9f35f1a7d620664716f52f6/similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dff743e70ebfcf98e4aefb8b6a44a28a4e67cb7ef5d738e78d853ce44b4909f2",
                "md5": "362b42baab0fd45410d03c3a32a54873",
                "sha256": "60ab6b32ebfcda7998c0e906c2cd774797e87ba10ef6f0d5969c4c837ac86154"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "362b42baab0fd45410d03c3a32a54873",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 448885,
            "upload_time": "2024-08-31T22:25:27",
            "upload_time_iso_8601": "2024-08-31T22:25:27.010667Z",
            "url": "https://files.pythonhosted.org/packages/df/f7/43e70ebfcf98e4aefb8b6a44a28a4e67cb7ef5d738e78d853ce44b4909f2/similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4eb3287f39a32168c16d7cbe9635d5bc353b8250a3d7de8770dac04f0cc7f2d0",
                "md5": "7f431b398b4f1ae1673e748802d36432",
                "sha256": "e1b2185c1ee5d989a44332b845fb3b2f9dd05e183ef7dd77e80c1b554b582af1"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7f431b398b4f1ae1673e748802d36432",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 531679,
            "upload_time": "2024-08-31T22:25:29",
            "upload_time_iso_8601": "2024-08-31T22:25:29.463949Z",
            "url": "https://files.pythonhosted.org/packages/4e/b3/287f39a32168c16d7cbe9635d5bc353b8250a3d7de8770dac04f0cc7f2d0/similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e04f677dbee830dcf21e89b5b4d840bd3a4995598158c1d93252f76eac3b671",
                "md5": "513f55bb8fe8bf3ffff1bf0ee7c7e052",
                "sha256": "a64d8c128ead8de780d21f00605d1a9562060b95591ae9d7539da3e94a26d8ad"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "513f55bb8fe8bf3ffff1bf0ee7c7e052",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 453882,
            "upload_time": "2024-08-31T22:25:31",
            "upload_time_iso_8601": "2024-08-31T22:25:31.345208Z",
            "url": "https://files.pythonhosted.org/packages/0e/04/f677dbee830dcf21e89b5b4d840bd3a4995598158c1d93252f76eac3b671/similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7655f073aaecbcb2345cc0527b3fb0137c9df4bfa5f21b0cdb64c4c9aea38e2e",
                "md5": "202b5e0ad62ac6bd9274db815f7a91e3",
                "sha256": "73b93b82e26ae6cd910dcdd1bc0a9ced050b8649aec29bcad3948f5609a1dde5"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "202b5e0ad62ac6bd9274db815f7a91e3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 432243,
            "upload_time": "2024-08-31T22:25:32",
            "upload_time_iso_8601": "2024-08-31T22:25:32.847115Z",
            "url": "https://files.pythonhosted.org/packages/76/55/f073aaecbcb2345cc0527b3fb0137c9df4bfa5f21b0cdb64c4c9aea38e2e/similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4952076b233a7170ca72d0de6513ae87660c8059452c7aa3850bb0846845086a",
                "md5": "6a3ada4478868ed0b76e2f4ed660f333",
                "sha256": "b0dfec8fe0976833181238e5db5af0e748267fb67553bf13e8cff2a08049107d"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6a3ada4478868ed0b76e2f4ed660f333",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 271142,
            "upload_time": "2024-08-31T22:25:34",
            "upload_time_iso_8601": "2024-08-31T22:25:34.185391Z",
            "url": "https://files.pythonhosted.org/packages/49/52/076b233a7170ca72d0de6513ae87660c8059452c7aa3850bb0846845086a/similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5f3819e4169e29240a304045290c5b1619ed0a07a9c02f64fecc184de5e6fce",
                "md5": "74ba84021ccd691a2fcf51ca000d709c",
                "sha256": "f5a5970f216dbae2cc2ffa2121637581a8d1fb8ea4ea71f62187d80bf85aa101"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "74ba84021ccd691a2fcf51ca000d709c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 269510,
            "upload_time": "2024-08-31T22:25:35",
            "upload_time_iso_8601": "2024-08-31T22:25:35.546153Z",
            "url": "https://files.pythonhosted.org/packages/b5/f3/819e4169e29240a304045290c5b1619ed0a07a9c02f64fecc184de5e6fce/similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df6e79b548df68de55610b98061139cda0e1046c6634431729f650d1bd8653cd",
                "md5": "876363e6a98d55db7f077759b83c7250",
                "sha256": "0d97033966ecad898e037bd1ac763b2612b9be421c837446b51ba3f94efd1da4"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "876363e6a98d55db7f077759b83c7250",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 297721,
            "upload_time": "2024-08-31T22:25:37",
            "upload_time_iso_8601": "2024-08-31T22:25:37.062187Z",
            "url": "https://files.pythonhosted.org/packages/df/6e/79b548df68de55610b98061139cda0e1046c6634431729f650d1bd8653cd/similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4323d49b72826af422fb3d4ad1e44051ca28b61308befbd251b64f12c513bad3",
                "md5": "ae7c5026a74220598ec9c6a9cf96d0c3",
                "sha256": "c48a3d56f641fecdc193883ce6e753686d1d2d4ebd7e5a72c904e591eb7607bd"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ae7c5026a74220598ec9c6a9cf96d0c3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 306135,
            "upload_time": "2024-08-31T22:25:38",
            "upload_time_iso_8601": "2024-08-31T22:25:38.461887Z",
            "url": "https://files.pythonhosted.org/packages/43/23/d49b72826af422fb3d4ad1e44051ca28b61308befbd251b64f12c513bad3/similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1a4873232a107dc194f3508517437405e8e37c2573a229b6b64ef0b68db6188",
                "md5": "337222654eb1b83aab4fdb33708b54c1",
                "sha256": "6960dfb343e1ff692c94b923c16f414381efa9949ced26ebd365086491fa21da"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "337222654eb1b83aab4fdb33708b54c1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 261733,
            "upload_time": "2024-08-31T22:25:40",
            "upload_time_iso_8601": "2024-08-31T22:25:40.339585Z",
            "url": "https://files.pythonhosted.org/packages/e1/a4/873232a107dc194f3508517437405e8e37c2573a229b6b64ef0b68db6188/similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a85a3333ebc5166b85749d0e2cfcd49a841067a00f7ab6b1fb36921a89fe2983",
                "md5": "769bf4ad3f02d53b1c03341b8ca02d55",
                "sha256": "7672c145614551ecb6412faa20fa45c0041be02a4970ef6dfd5001be700274ca"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "769bf4ad3f02d53b1c03341b8ca02d55",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 274181,
            "upload_time": "2024-08-31T22:25:41",
            "upload_time_iso_8601": "2024-08-31T22:25:41.943153Z",
            "url": "https://files.pythonhosted.org/packages/a8/5a/3333ebc5166b85749d0e2cfcd49a841067a00f7ab6b1fb36921a89fe2983/similator-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "156db37ca323ad6574723116f9c4e88fc3944a4d0e89eb235c1c0e03e38a175f",
                "md5": "21d6643613bb692ed99e62935a9e5872",
                "sha256": "875aaaf547fbe12a4a45a46421dde52506574d404ecd0da8cc5a0e9397167633"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21d6643613bb692ed99e62935a9e5872",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 448991,
            "upload_time": "2024-08-31T22:25:43",
            "upload_time_iso_8601": "2024-08-31T22:25:43.257133Z",
            "url": "https://files.pythonhosted.org/packages/15/6d/b37ca323ad6574723116f9c4e88fc3944a4d0e89eb235c1c0e03e38a175f/similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38363e2e931cfde8c686fce95ab889e312db524720e827a1ed47335b705b4e9e",
                "md5": "675e99dc0e6974ee8934c3a25891003a",
                "sha256": "c8187b2c956c74bcf0a3657050f5d4d43d786a62bae98e0ac79e0154558652b8"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "675e99dc0e6974ee8934c3a25891003a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 531691,
            "upload_time": "2024-08-31T22:25:44",
            "upload_time_iso_8601": "2024-08-31T22:25:44.678834Z",
            "url": "https://files.pythonhosted.org/packages/38/36/3e2e931cfde8c686fce95ab889e312db524720e827a1ed47335b705b4e9e/similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98797bbe80f5ac2ecc8838e1ab61a988cfebd996d4b0f0ef950ca3cb8ab3a1a7",
                "md5": "2fd8b86dd01e3d377d0eeb335104f33c",
                "sha256": "b04907584cc3fe73d7c8a246729e74783e1a32084d1aaa34a7844ca83b9790e2"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2fd8b86dd01e3d377d0eeb335104f33c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 453694,
            "upload_time": "2024-08-31T22:25:46",
            "upload_time_iso_8601": "2024-08-31T22:25:46.062060Z",
            "url": "https://files.pythonhosted.org/packages/98/79/7bbe80f5ac2ecc8838e1ab61a988cfebd996d4b0f0ef950ca3cb8ab3a1a7/similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75dadfa2b74c7b3e0efc432da2b08b85bc06805f7156790e202f6e7d1d75d3a6",
                "md5": "2e8f797b99911f835d2d7b62ef068742",
                "sha256": "ea6623516df7c433218b5814c727ccf8b42d8e1911b02258bdafd190f8755d8c"
            },
            "downloads": -1,
            "filename": "similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e8f797b99911f835d2d7b62ef068742",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 432311,
            "upload_time": "2024-08-31T22:25:47",
            "upload_time_iso_8601": "2024-08-31T22:25:47.490070Z",
            "url": "https://files.pythonhosted.org/packages/75/da/dfa2b74c7b3e0efc432da2b08b85bc06805f7156790e202f6e7d1d75d3a6/similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43ef1bd5bace9baf157078837682a7087c7301a2578fa53979629fe8ede63172",
                "md5": "a65ec660b0c0656abcb1bf77a077e7d5",
                "sha256": "b33a5577b3b59ce20e2960040cab30dbf78201ae3957e8e0945ab4132b1d27ef"
            },
            "downloads": -1,
            "filename": "similator-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a65ec660b0c0656abcb1bf77a077e7d5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 24846,
            "upload_time": "2024-08-31T22:25:48",
            "upload_time_iso_8601": "2024-08-31T22:25:48.771620Z",
            "url": "https://files.pythonhosted.org/packages/43/ef/1bd5bace9baf157078837682a7087c7301a2578fa53979629fe8ede63172/similator-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-31 22:25:48",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "similator"
}
        
Elapsed time: 0.79000s