Skip to main content

A powerful text similarity module with Rust optimizations.

Project description


Stars Pypi Version Documentation Status License GPL v3.0 GitHub issues Python Version

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:

pip install similator

🌟 Quickstart Guide

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

1. Import and Initialize

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:

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:

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:

# 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:

# 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:

🛠️ 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 file for details.


Project details


Download files

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

Source Distribution

similator-0.2.0.tar.gz (24.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (432.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (453.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (531.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (449.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (297.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

similator-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (274.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (432.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (453.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (531.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (449.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (297.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

similator-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (274.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (432.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (453.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (531.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (448.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (297.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

similator-0.2.0-cp312-none-win_amd64.whl (133.9 kB view details)

Uploaded CPython 3.12Windows x86-64

similator-0.2.0-cp312-none-win32.whl (130.3 kB view details)

Uploaded CPython 3.12Windows x86

similator-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (432.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

similator-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (454.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

similator-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (532.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

similator-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (448.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

similator-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

similator-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

similator-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

similator-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

similator-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

similator-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (274.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

similator-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (231.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

similator-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (231.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

similator-0.2.0-cp311-none-win_amd64.whl (133.9 kB view details)

Uploaded CPython 3.11Windows x86-64

similator-0.2.0-cp311-none-win32.whl (130.3 kB view details)

Uploaded CPython 3.11Windows x86

similator-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (432.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

similator-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (454.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

similator-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (532.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

similator-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (448.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

similator-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

similator-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

similator-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

similator-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

similator-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

similator-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (274.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

similator-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (231.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

similator-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (231.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

similator-0.2.0-cp310-none-win_amd64.whl (133.9 kB view details)

Uploaded CPython 3.10Windows x86-64

similator-0.2.0-cp310-none-win32.whl (130.3 kB view details)

Uploaded CPython 3.10Windows x86

similator-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (432.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

similator-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (454.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

similator-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (532.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

similator-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (448.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

similator-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

similator-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

similator-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

similator-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

similator-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

similator-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (274.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

similator-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (231.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

similator-0.2.0-cp39-none-win_amd64.whl (133.8 kB view details)

Uploaded CPython 3.9Windows x86-64

similator-0.2.0-cp39-none-win32.whl (130.4 kB view details)

Uploaded CPython 3.9Windows x86

similator-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (432.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

similator-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (454.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

similator-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (532.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

similator-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (448.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

similator-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

similator-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

similator-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

similator-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

similator-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

similator-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (274.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

similator-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (231.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

similator-0.2.0-cp38-none-win_amd64.whl (133.9 kB view details)

Uploaded CPython 3.8Windows x86-64

similator-0.2.0-cp38-none-win32.whl (130.3 kB view details)

Uploaded CPython 3.8Windows x86

similator-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (432.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

similator-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (454.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

similator-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (532.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

similator-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (448.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

similator-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

similator-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

similator-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

similator-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

similator-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

similator-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (274.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file similator-0.2.0.tar.gz.

File metadata

  • Download URL: similator-0.2.0.tar.gz
  • Upload date:
  • Size: 24.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b33a5577b3b59ce20e2960040cab30dbf78201ae3957e8e0945ab4132b1d27ef
MD5 a65ec660b0c0656abcb1bf77a077e7d5
BLAKE2b-256 43ef1bd5bace9baf157078837682a7087c7301a2578fa53979629fe8ede63172

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e75eb262ce58e99043a8b20de2db5dc9755c799e3803ce6dcf9f17b545b74d9d
MD5 75b873e5c461a24296800f082d2b8ab1
BLAKE2b-256 eca0a148186149eac3e1868c8624c0776aeaab8d395b03a9c8f994fa8fdd377a

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a898fe9bc05c0bf66c19d893271deb9019716d5f7d759a9829470ab88c4476bc
MD5 1dd909239c3bbdc7cf807d7f3e4cd955
BLAKE2b-256 bc1e36af1845248855363887488fb9205e5630bcf83dfa21a1fadc9c6cd211c6

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7213065722051cc6593b8edbdbe6c9aaaf172db4c57242b7c99ec93c3a775036
MD5 9fd2cedd59107dcbce162e25b48b3bf8
BLAKE2b-256 b87ea4bb1376a000dca5da2a6163cdb19b829ad3d98f0082a2560a5263165e1d

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34b42e100e6fe597680c830e56eae422da9090facadc3a7062f0707bdd150f21
MD5 3bb56ea0c2c6e87e47eb912e3a3c8904
BLAKE2b-256 e4c6db4b75a32d153de3596f8dab43796fa9e7203b1a4073dbdc9da7e2b108f3

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 899d9cf86d29f46fed39161f39900c4a1a8e57ceb41e1c21d33ff3d69c4cbda0
MD5 b864811067a72498f64a9b1bd0630147
BLAKE2b-256 646d3049b9eed8a1160bda9a4b160a75ecec11d88ce4fe456e7a4c626febcd5d

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6fc8287e28d68159559521a4772a75f5231a67c695c1b035ce48fba86cd207b4
MD5 30dc0a52d900c7a810f4bde2ce49f21f
BLAKE2b-256 f23b029a433ca872e2729fdc660b71f4a65463e601f05a33d27705c5919706e3

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 636fd0e5e11d7986ccb99952a4f33fcba65265e09b065cf03f14da42d2b4b313
MD5 1bd78562e0a2325ede40b09022b7e567
BLAKE2b-256 7da288b96c27df580e1b1ddecc1ea594e637aadee525dd921e00c29ad074dc6f

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ceb0645b5871c4e40f231e161b5454d9c1a2469f9fa06552eebcc9eb1c37864
MD5 09bbcfb86e42fc988bc4a308d0472a6f
BLAKE2b-256 4659f89c330a6894a27871a7a87fda74c82569830ffefc61ebd28cf9a7ac86ea

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52b67a79acc77bd984f30d3dee0e6df9b0b3f43095ad479ba91be60299ee3b51
MD5 d142e197837f818595938c29330d0390
BLAKE2b-256 c5c4c7cecd9daa6da14f4b9ae92d7e3880954e73002df95254cdf7e100fc22ec

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 01ab4e3baa05d1699e64e43e4b905f7a78e9bad5797a3375771f1457c827dbda
MD5 c83b527cbc31ab56e665782ddc4a9988
BLAKE2b-256 1f13e029562ae6d2ae626fbc55a2edd16d50484d983fb54e8f4be313e38c6d90

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea6623516df7c433218b5814c727ccf8b42d8e1911b02258bdafd190f8755d8c
MD5 2e8f797b99911f835d2d7b62ef068742
BLAKE2b-256 75dadfa2b74c7b3e0efc432da2b08b85bc06805f7156790e202f6e7d1d75d3a6

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b04907584cc3fe73d7c8a246729e74783e1a32084d1aaa34a7844ca83b9790e2
MD5 2fd8b86dd01e3d377d0eeb335104f33c
BLAKE2b-256 98797bbe80f5ac2ecc8838e1ab61a988cfebd996d4b0f0ef950ca3cb8ab3a1a7

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8187b2c956c74bcf0a3657050f5d4d43d786a62bae98e0ac79e0154558652b8
MD5 675e99dc0e6974ee8934c3a25891003a
BLAKE2b-256 38363e2e931cfde8c686fce95ab889e312db524720e827a1ed47335b705b4e9e

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 875aaaf547fbe12a4a45a46421dde52506574d404ecd0da8cc5a0e9397167633
MD5 21d6643613bb692ed99e62935a9e5872
BLAKE2b-256 156db37ca323ad6574723116f9c4e88fc3944a4d0e89eb235c1c0e03e38a175f

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6960dfb343e1ff692c94b923c16f414381efa9949ced26ebd365086491fa21da
MD5 337222654eb1b83aab4fdb33708b54c1
BLAKE2b-256 e1a4873232a107dc194f3508517437405e8e37c2573a229b6b64ef0b68db6188

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c48a3d56f641fecdc193883ce6e753686d1d2d4ebd7e5a72c904e591eb7607bd
MD5 ae7c5026a74220598ec9c6a9cf96d0c3
BLAKE2b-256 4323d49b72826af422fb3d4ad1e44051ca28b61308befbd251b64f12c513bad3

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d97033966ecad898e037bd1ac763b2612b9be421c837446b51ba3f94efd1da4
MD5 876363e6a98d55db7f077759b83c7250
BLAKE2b-256 df6e79b548df68de55610b98061139cda0e1046c6634431729f650d1bd8653cd

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5a5970f216dbae2cc2ffa2121637581a8d1fb8ea4ea71f62187d80bf85aa101
MD5 74ba84021ccd691a2fcf51ca000d709c
BLAKE2b-256 b5f3819e4169e29240a304045290c5b1619ed0a07a9c02f64fecc184de5e6fce

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0dfec8fe0976833181238e5db5af0e748267fb67553bf13e8cff2a08049107d
MD5 6a3ada4478868ed0b76e2f4ed660f333
BLAKE2b-256 4952076b233a7170ca72d0de6513ae87660c8059452c7aa3850bb0846845086a

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7672c145614551ecb6412faa20fa45c0041be02a4970ef6dfd5001be700274ca
MD5 769bf4ad3f02d53b1c03341b8ca02d55
BLAKE2b-256 a85a3333ebc5166b85749d0e2cfcd49a841067a00f7ab6b1fb36921a89fe2983

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73b93b82e26ae6cd910dcdd1bc0a9ced050b8649aec29bcad3948f5609a1dde5
MD5 202b5e0ad62ac6bd9274db815f7a91e3
BLAKE2b-256 7655f073aaecbcb2345cc0527b3fb0137c9df4bfa5f21b0cdb64c4c9aea38e2e

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a64d8c128ead8de780d21f00605d1a9562060b95591ae9d7539da3e94a26d8ad
MD5 513f55bb8fe8bf3ffff1bf0ee7c7e052
BLAKE2b-256 0e04f677dbee830dcf21e89b5b4d840bd3a4995598158c1d93252f76eac3b671

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e1b2185c1ee5d989a44332b845fb3b2f9dd05e183ef7dd77e80c1b554b582af1
MD5 7f431b398b4f1ae1673e748802d36432
BLAKE2b-256 4eb3287f39a32168c16d7cbe9635d5bc353b8250a3d7de8770dac04f0cc7f2d0

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60ab6b32ebfcda7998c0e906c2cd774797e87ba10ef6f0d5969c4c837ac86154
MD5 362b42baab0fd45410d03c3a32a54873
BLAKE2b-256 dff743e70ebfcf98e4aefb8b6a44a28a4e67cb7ef5d738e78d853ce44b4909f2

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 347554437a1438b0dea93ca4d72ae2dd7fa71a97cdf1162b8ed0d5aebefcf4c9
MD5 1cb63c4f71d96165c4ad240df63dcca2
BLAKE2b-256 d36d2115efab00f161f8e0ed3b4923513add1160a9f35f1a7d620664716f52f6

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70983bd6c342e48a825d427b4613860aadf0911dd24524f38b15970302476e4b
MD5 4a1382d773cee2d2ce194322c5317305
BLAKE2b-256 acbd6f939f6d8f24ba9a8091bb48daea334389ed8d96e98bd980254261070704

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09769f6f7fc07265f64d33a5ea3d9f8b8ae019ede85c4dec0c174b783a1ea24c
MD5 0ad37a0020cd9ea964d1a4b60a655553
BLAKE2b-256 a0a7e8474c51f4bb80a5c4d7ac1b0f7e8c55784dfdc43f441c08121088b19627

See more details on using hashes here.

File details

Details for the file similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fb6c400600ae3e214fd90e79bfb68ddc893c8fd752209453ade0d3c67594035
MD5 fc7824cbc86952c4fb6927bf49319e00
BLAKE2b-256 c14c6f583eefd5728f18c961b502dea5e2de49ca5cd878a9d057ff45b0928a6f

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-none-win_amd64.whl.

File metadata

  • Download URL: similator-0.2.0-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 133.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 2178dbf9eae52f032417965408a326f81f570cf33995836c3da897bf9c8274bc
MD5 d29bd13112e279eccb98e5b6834efed5
BLAKE2b-256 308f47bb433deffa13cdafbb3b776b0d402021da3c465e6022e4248f3f9b642f

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-none-win32.whl.

File metadata

  • Download URL: similator-0.2.0-cp312-none-win32.whl
  • Upload date:
  • Size: 130.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 99c51e1d5f21d7f3f8d7f53199c68f99a8baa44b8086fc094ff0fc77696f0ab6
MD5 5a960ea1348d6e946a2473c93d22b3b6
BLAKE2b-256 cd316ff90cd29e2251e76d15bc9d716448ce6c94c6e4c1ac3a829e25e29dae8f

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 faf25ed556707016f675fcc91681a5c4f5a2ef04b545260737964aa475eabd9b
MD5 f63c57eb61418fab288d9fcdce0fe401
BLAKE2b-256 d30eae09426738c8cb1878115d3dc139111b5a199d282c4d66a91b0d1b62309a

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25e3658717342d777637f721553ab8383f956302e91640be8f1e6ed60f81a2c0
MD5 6233825ed39d66eae996678cf4e6edac
BLAKE2b-256 7e37166f59f6ece813ea48f03a405e92bc56b4eb406990793c5d793bed8a7d5f

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec45542e717c684e6a80743ff2adc405d99fd45ec5aecdaba1748ba5c37a182e
MD5 bc4f2a74e17a12d7c244445a3dff7665
BLAKE2b-256 f2289e3886c6066aed1d1a96f14d10c83ba18de591a4ce089fa50b792a878222

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64324b7876bd328b58b779899f147296fec2548b9163bd3c1f86912846f12cfc
MD5 80f71b81dd40120347bc713fdd280c86
BLAKE2b-256 0ad9b927282e845fe58e8d103b0df31344b1c58ca2e4b345db966b5848093a73

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aad424f724152eeae7b3f9c9a0cc3d5b4e1577928595425e4314a3a2f878aff9
MD5 ed36e75419e16a553de2b0a6762a1115
BLAKE2b-256 25ffb0be99898b90c3c65ae57e0dcd0368e787cc098c6ede2f1b401224dd72f6

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecffa778220e8574a0a5a28ea083e98c52c32ef1d4e48a7adffb04b15a176132
MD5 02512fd18e1d8cd80f2cbd642f977ec5
BLAKE2b-256 35ceb1771bd66b678fb8cc53ae9dc33a9fa31038e0f7a00cbdb13aecc9e8baaf

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b070ae3367343d04e2255157cf90b9511841c1291875b91c266e5eab2c8cb8a
MD5 e0a2581c382d118cf7ad7caea23e1180
BLAKE2b-256 48c2be71072899ab8c3700ab1ab8b2cd90f15aadd230795468ce5a1d49c2a6e8

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b62be4a248c9d17b38dc5a8ce28c711c75605c0dffc552cab111ff8eed993f3
MD5 fb23d90aff5b32695c8b8e1235aae2bf
BLAKE2b-256 21f16e52e159ef40b52612ac7be4c473cc940308450448cae6bf835f871adc3a

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d0d331d574ef5df5c8e4b50f43288d061785b8481f7567d1a44247978e33553
MD5 aba0bf7690f56aff1b834e2292703160
BLAKE2b-256 aea4907b3f04a46d50ba5308bd83e9debd314f5d7ed0a8401e7f02a64e67bea5

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 969ecf0dab6e21ed6193e32cf2e7ed4fc0ea7828296a7eace576b3289a71c816
MD5 85449468931f64ce579f2efad227b171
BLAKE2b-256 73de81d7d43956f673d60c0279a3f84ae1cb213f4974c5ba3448534641f07aef

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9aecf1bc7b8a2d37ad5a89b49ef004f136dea63a7c4af1e6190b99fa5250dc34
MD5 099089caa7831f169a2c12d66f616504
BLAKE2b-256 09ebd590544bd0f1b2a22316319be287f2e80bae79c180f4c3810d2cf4c78759

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2c25869e808b300da6c11457f1984ddc0a0bbe5f58251dd42caaac8ca142152
MD5 dc44778fbbd8784858c012572e181408
BLAKE2b-256 a8dd39a3353a8765372ebbadbdbaff3481e52a3adb426ffabeaa4a02f52daf3e

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-none-win_amd64.whl.

File metadata

  • Download URL: similator-0.2.0-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 133.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ae05c576dcdfe89075e7fadb8d68b469800ecc3fc8a0ec6829dd9b5b43bb5c5f
MD5 42d58e95a8542bdeeea25ae6341b66f3
BLAKE2b-256 0de91eda56878887bd98d70d316696597dcca9c87282abbc313bd71f75e23d7c

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-none-win32.whl.

File metadata

  • Download URL: similator-0.2.0-cp311-none-win32.whl
  • Upload date:
  • Size: 130.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e0c68ef3a265cd491c68241386c12d63b0b0a43500406dbf308ef3d48d105828
MD5 5b32aeb6c761c3dd7e3042e3ed9f65a6
BLAKE2b-256 ae6995b44112ba319cbb9f42d0042f8f0b681cc06029e4a886a41c56777ef839

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b9c6041d0638dfb4d73a0cc3e4aa45c3a30ac417b5695eabf7bd1290dbfde25
MD5 169c4f7aeeeaa67340d279ae8abe81f9
BLAKE2b-256 b3ead67e00162f5afbac894f6f733d06e2f50ad4199d10d50eb3a534a5d7f83d

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 506cf7a2c87bb0eb25e4bb43004456b7be6047ff35d8cc05a01363007371de25
MD5 a10ebc5b04a2105374b6e8f886df3022
BLAKE2b-256 fb046821cf38dac626d2aec93094ea0272512e1ccbde0e614c12e8e0732204bc

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f20d224693bee161bb5cbca226bea492dc0ac23d394b8f0e9a639ab908198fb7
MD5 e26f2d06bd87ee208a83c3fa56db6f35
BLAKE2b-256 b22a7af8563f8e9808d9e53b1acff8d76bd62805895c79a96894ed28f7ea15d2

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6121faa4a165583217c8a9b734717c5acbd0b53ce60ccde2ac29ae975335134b
MD5 16c8797b4fe74c9b1669941c41ee1125
BLAKE2b-256 ba213b43f3d06b411e965b01204a216eb04a634559eb542a8779c16c584c01f1

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77a26c0ac9ebb0a34e1672f8e72c0de62db95db0ff630ce94387aa9c69e5b25d
MD5 b070db60c2bf80ba62c4407b030148ba
BLAKE2b-256 682935efc4b3a724e99412a90c860c59dba0f5efd32d92baa3e3772c4123d5ef

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 acf08b4566fcbaa2a5b0e49f112e1ae90333217d0fa97b4ab4a82dbc6a6b569f
MD5 ce6d26e5ed05bf7185b97a9b39090fb9
BLAKE2b-256 40e2ad1f030fccb6f901d61d81496f7ae46c92a07fffa8ef456cc66a2c50a265

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6969f24f390fb715a1b7961f28ce58c121b803a7201fb9631b5aabfcfcb77d03
MD5 b1f2bce10b618676a30341f24a330ff8
BLAKE2b-256 d0eda4145ac77c36e18031b030d43bbbc1f7bb9a1e67ee90e290b5aae51853ee

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71a51d81f7fde56d2466c0b4f3de7228b76ebd9e2f2704a754af259809757ee6
MD5 45f768e492e4dd6a03540a0600f8c556
BLAKE2b-256 e96b3b359411728a6ade7bbcc39f82f8b393ea1edaba5a36bbe1a7a281f5f5f8

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ceb57609edadf1e95d154f00e7c15b8388f6d5930920f62ed9362d0a02332c53
MD5 a6fe058488fa87340ffb45627f489c64
BLAKE2b-256 7c078c49def56b71bca3d34c735259b680cda869394d32eb80baa4d794058081

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aacc34edec94ac2d98cc4b8f8de28242c92b971563e24c47399d043eb9353041
MD5 c965691febebae6982e7ec2feeabb4d5
BLAKE2b-256 52e3751fa10e51ba4433d7e437427cce7f8c84865d97944394da4dc5933482c3

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 923fe7aaa8f435c13aacad828243217a34e1e9dc836f71fad7a6df62fe56c288
MD5 8dcc1202a650eaa09b461655c133bdf2
BLAKE2b-256 89202969885ffcadd10137f6efab71bb83551a3cb32b6607743ee6411737ac34

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 befb7d56280b7d66b5c97a6ce29a7828afccad9f71e9a8045fd97ae41fb47832
MD5 0a6f57ba5e4472a96cf5484bb750e219
BLAKE2b-256 20820da4775390d21e01df393b2492c510d2a6aa87776644a9dbb6347a7fd9a9

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-none-win_amd64.whl.

File metadata

  • Download URL: similator-0.2.0-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 133.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b21c1fb49df62471e2f52b655916cb70cd939f54f8d47fc6f14a4c52d2d16716
MD5 b6b7e5343647d686d0c646511afa433f
BLAKE2b-256 a6ae98e3269282e8cd19ae70f7b85c9b7db7c025c449cf9bbe76dc7da8f4bab9

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-none-win32.whl.

File metadata

  • Download URL: similator-0.2.0-cp310-none-win32.whl
  • Upload date:
  • Size: 130.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 874e187574a2c07de5f8a23dd6c46e18df7c7dbbb6f3106ff4336f22d81ee4b0
MD5 7ce32a76d08406ca8454b134bcb19c4a
BLAKE2b-256 cc65a15a448a89ad23d421b0767dacd538c559ad1657a08b58bf9df2a41d43f0

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8125daae2bbfeb56c4621bdb696df2e62a41524963e636d36feab32238f87cb
MD5 1cf1fc77a09ee68237152ca819c0923f
BLAKE2b-256 204f41870475712f0b00d6d9bfbfd01a8aaa0adb7d34663c1f9b3802f14cdb14

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 891131c38f13a0e316d52c66b1ecb08d93fb1bbffddfb3b01e519cf4dbf55095
MD5 3bb5f7080f3e744ee47335b2e2acdafa
BLAKE2b-256 52d1ba093df351dae34d46bdd661373f1febaeefe3f5dd962808605b40ebc801

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14f11849f56a73cafc161ecda46a21dd45df0d684f337d5663ae7d2c4b82e12e
MD5 eb693480bb202635ba859113c35ed366
BLAKE2b-256 55f514a7b67984377d5cbcefc2f5e0d82dc0b419aaaeafd0a8d35a478e35a7c1

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f38cf32d643cebe0702e23f40792794e17643d1b30293cbcc559f449d977af3
MD5 bb3801e21779e098af54489f78fac44b
BLAKE2b-256 de0f84ccca4ce6b932befd9998dd085014969e1a8abcf9e77f23c63f3263667a

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fae9dc081f7478292e569c3dba118300b9d36362b1d6579bb56e8b142443e7c
MD5 994ecc70b3e2268184d8c3ce36dd7e2e
BLAKE2b-256 48f6d38b4cf3d31fecba2817735cf1dc5a79a47720a2a0456701308d5c20010b

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81fa9b928717e6009c52eba6e90fe65fc80850315deafbb3eb48d0c4a77c08e8
MD5 d3a49b3fa40146a57a6252150b9de12e
BLAKE2b-256 5d339b71bd34458e1bc05f9d464286b95fc148906fb3f293d0e072870bf3c80e

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 054ce7d938a5a407433adc87a4e4fc1d6274bc3959475a4a3de70188b4d82021
MD5 563e45b10fc39a7599a9e97384e8cc92
BLAKE2b-256 83062a795afc1fd6adfeb06d8e1337f3da8834e88ffc927f3137aa943f6734b6

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd5d29eda889c00b13067bd5e5a64e45dcd10bae6dea1924091931c2b38b5778
MD5 667984fd4a38f50ae278707ba1fc8365
BLAKE2b-256 e1c062a34073fd79ba9234129649a1673026fff10c8d93ef53b8f6866b1218e5

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ccb675d086d013ac2c362582eb7f25277307ce89e5adb5369727a05694d8d12
MD5 2462804cffe5a00161b261284ad67bdf
BLAKE2b-256 08e1fa19a7bdafee9dad082174a390a92f510d9774c842f15d9362dfdf5fcb06

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 846aa24efc87437d71693ab48e74c81ca3dc1cb2122a3e092228ee253099fc1e
MD5 5f4f1604a6e31612b35bfd2af28811ce
BLAKE2b-256 c773156eba57c4ac7bed7721a961a55b5b9c775c1ebf60d612ec04079773a065

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79349f7d612e531d5db896d40286bbd6c9602b2949b8eda1f1ad89bf98dd608a
MD5 428ad5076f2b7c996bc9880befc633e8
BLAKE2b-256 0643b05da16e7cf72077a1bd6861af4b474ef5cdfae53be1f464c985dd9f6aba

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-none-win_amd64.whl.

File metadata

  • Download URL: similator-0.2.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 133.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 417bbe8c3ac6f9501ee7645706222217faf9edd1bd441d4e1688d56147d4c802
MD5 4d437b099d216ebee4c5363e4f8fe1a8
BLAKE2b-256 125cee971ce0d738a32645cab21de842a9a345f390e75b058c70b5844e50b448

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-none-win32.whl.

File metadata

  • Download URL: similator-0.2.0-cp39-none-win32.whl
  • Upload date:
  • Size: 130.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 fc92e28c8d2b9537d4279713325c89029bff9aac7abfa4328252b23f2d3eb38d
MD5 8c3d42d386dbcf40354502bdb39a85fe
BLAKE2b-256 050a49f8385704dee47520e83f2d4565aa8171d06f3d84c2d11638a2cc857e35

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08980b4bee5e1858393a4d3eb16291780277203ff55e559d7c3641e8f71dd8a9
MD5 44b2337b34992a0bccdf84d763347d68
BLAKE2b-256 e1369b787c7299562b1a052d312cf9ae502681c1c524c12cbf8c44b69933dc14

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c189742b37d08f15126677885d0e065a6c54a1305fab556cc7e6dfd46522077
MD5 d5e7d2be2a08bb056b0575a43e7d4f8d
BLAKE2b-256 60ba7fc07cddefdf1ba87f0baf3b98810a4001fe2e45bfa12889e7916a5f3961

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c3f8b0a0a8d128540a19f811c026185b0399d33c9589d8424994f9c07dde4493
MD5 8fde81425280aec5b37138aa901e7535
BLAKE2b-256 faad3fc34cf97dd01e49ef6200c47083db286c2da401236ca0aeb9f1c2b7b992

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ebf94e14baeb362ef2c7a15b452842ef887c01363f09f23c3e37dfa5cd1552a
MD5 8f6acb4824ff63a4b99fc468073b201b
BLAKE2b-256 a38f37f3a57225449886739f91cb988c430e3cba6e65e7a8f6decc344307ef27

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dfd3cc830b046c31b739f20a324bb93555b6f052f34001171d6b61e52b73d98
MD5 2c0c753de6aadcc9fdcbe3a872b15fd7
BLAKE2b-256 f6de3f55c2fa484671f4a6a014934bcc17be13c3d07666d329c48616f7b4e137

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47f9260f33ec6a3b41bad903b2c13ccca4973ca39413e12182892b2bd97434e3
MD5 e507ba6a75b4335f3b2fb0636e5c7bd3
BLAKE2b-256 7814a3dd5569f064f4f29e1e4b79f317c311c0b38ec5918e071898db9c49eb9c

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98450a97953cf79f0e5a21a413766dd504e9c0542d2147af27044c0bf625d659
MD5 43cd5e93ae9a30c6dc90ed018506c6cb
BLAKE2b-256 26c435986131907caf35ba116867a932ad35aafcdc45cf0f1fd994182cf6c0a7

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8786177d83395ad92accc3c1f317236d90a2aa3f02fb86133899dce2613646e
MD5 f6d18c17be323159f9c2a1e5cf51a9a2
BLAKE2b-256 d29f772355193626c4a68b9bf2fcdb55ce90be8ac3b40a95d3a64300bfe6b45b

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f066ec5ae62af1db33b99d9f60a838ba0edf34f607ab2247210466f17483de6f
MD5 51a88e13dda2be730660bef81683bf37
BLAKE2b-256 d513808568e3414284434cd1f5f572382fce59aa1f0e91d1cfd7c4d66475e42c

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa9ec6eccb9c56657fe0fda96e84778f6eddac06e3493ae742d3013b830c8e3a
MD5 23d68949cedca46204b0d1f8245bcae0
BLAKE2b-256 22b787e227bc767b3c6d18e1fb8ebf123124f21491d2aecbb5e0af2a4e9be668

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74b5212d46c155acd5bbaaaea60ea27b71b31666cbd8d474fe50668a22783a38
MD5 d261b78a3607f1db463b44356bc8f56d
BLAKE2b-256 e8b39b0e2380ce43293a765539363d9dc30734a152730323cbfc50a4005cec0d

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-none-win_amd64.whl.

File metadata

  • Download URL: similator-0.2.0-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 133.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 4eb7d927815f8b6413b4802cb5d6765726a95ddaa99adee7393116447c7a1396
MD5 5d67c98ea31625fd790bbba525eda9c3
BLAKE2b-256 ed8f4ec02cfa04b3349ba56bda5e2e3f9684a2057ec20eaeb065a974ec6f7265

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-none-win32.whl.

File metadata

  • Download URL: similator-0.2.0-cp38-none-win32.whl
  • Upload date:
  • Size: 130.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for similator-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 89cfbd9a587ffa4cd03953b1d50aa667898df328c07ffb54b8b1077fc1f6c62e
MD5 aad1288bb79c0377b91d3ca7f654a650
BLAKE2b-256 f1b5700f111022fc6c291057e2c7820f7727759e23f8d995a8550237fdbfe63d

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0baf55bbbcb7cca5e82e20146300a3ebc3f08689dda1a96375be760f060562dc
MD5 cfd3c7111fbe562a79f5676777a42450
BLAKE2b-256 7c3bd9268be948652c2d7de9551555e712c83141d58abab2f16fce09c81fa619

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 729d9611838dd449117d965d7e69f4e3ac299759a4ed2ed5e3e7517c0eb16b3a
MD5 ceebc320aa1ad1110a467924c78a2dc4
BLAKE2b-256 f87e7947dcee6cf5a4d6c7f0ccdb01c464352fff3864d790db093fb37fe36593

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a77e4d711dedcb0fcf7047d6fb39af5922f432ce172fc88a5d6040d47aef18f
MD5 1a583c6c975ed8a928a768977b3f509e
BLAKE2b-256 6b301e78d64d7abc253d95aaec89bfc17573b56e1e1c59221d11247772fba5fb

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3761a6560c6c75a7e5fcb0319dc7d2b214f0326fe3def8dea17ed0bdda1cd605
MD5 503315f8b52b2f96beeaba13deb7b971
BLAKE2b-256 0158a76f14942e91bcc6ef408554e0edf31e63443cb9a2638eec5659b8dc438b

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d5e2c212d03e12f4bf432fda67f1872fbd4d3b4258cfcd343dba70e8a4973ce
MD5 afcf6a6f300b387ffceaf58538f525cf
BLAKE2b-256 2ae19bcd7c3b5af2831920a30069b1a6586817e892846d2ff96fd35e794c6056

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 208c338ff33fda46fe86cf39fa6c5f3b7fce3603370e027ac8cda69af0a1396d
MD5 eb36ab113d275f789e7d37e4dae1c983
BLAKE2b-256 5af52dc336f03aa730624637d3836f69c6cc92a6c8c067dbf8774d7763e60742

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7bca050b838ade3c449d94f18a987878187bf0cbb11beb1ed6a659b4254a2e8
MD5 c208e9834d573e5c3f0fa8f6e1d7b47e
BLAKE2b-256 44f3755c30ad3e0e9dbdfd3c83636e7258929b969d9b7e5ff9359f761f27dc31

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bde792cdd5e09ec1c1399612dbcdce9158028325ef8a0427451c3e0434710b18
MD5 536d19c9af39984ac15b14c2622891a7
BLAKE2b-256 3aeebf1eee30526baf4c740b361f331d9622cebb12c381f728f03cd2c8c65732

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 414e331cc38fea6c5f9efdf2780d3f9c045486920309dfec412197f51f61797b
MD5 0b6c60fcf220e4b1247a848cdf549fe7
BLAKE2b-256 8dbd9c05e1313fac8b5c6814d62bf65e5577b3d49d5fb0c0bc7bc4414ecd0a55

See more details on using hashes here.

File details

Details for the file similator-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for similator-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e263a4b9b76bd70703f044e395374033246281c9382a78f63051511c0e294b6
MD5 9b792f362f6f11b0aa9dfb32935a140b
BLAKE2b-256 6b13cf13081c0a2b260c6a6c24b1147fa656027d1e95f350d5d343499c5e137e

See more details on using hashes here.

Supported by

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