| Name | vurze JSON |
| Version |
0.1.0
JSON |
| download |
| home_page | None |
| Summary | Version control your Python functions and classes with automated cryptographic decorator injection. |
| upload_time | 2025-10-29 17:39:54 |
| maintainer | None |
| docs_url | None |
| author | Aidan Dyga |
| requires_python | >=3.8 |
| license | MIT |
| keywords |
rust
python
decorator
version-control
cryptography
|
| VCS |
 |
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
# vurze
Version control your Python functions and classes with automated cryptographic decorator injection
> đź’ˇ **code version controls code**
- 🦀 Built with the [maturin build system](https://www.maturin.rs/) for easy Rust-Python packaging
- đź”— [PyO3](https://pyo3.rs/v0.27.1/index.html) bindings for seamless Python-Rust integration
- 🔏 [Ed25519](https://docs.rs/ed25519-dalek/latest/ed25519_dalek/) signatures to ensure code integrity and authorship
- 🖥️ [Typer](https://typer.tiangolo.com/) for a clean and user-friendly command line interface
vurze helps you maintain code integrity by automatically adding cryptographic signatures to your Python functions and classes. Each function or class receives a unique decorator containing a cryptographic signature that verifies both authorship and integrity, making it easy to detect unauthorized code modifications.
## Table of Contents
1. [Getting Started](#getting-started)
2. [Usage](#usage)
3. [How It Works](#how-it-works)
4. [Use Cases](#use-cases)
5. [Contributing](#contributing)
6. [License](#license)
## Getting Started
```shell
pip install vurze
# or
uv pip install vurze
```
## Usage
```shell
vurze init [ENV_FILE] # Initialize the vurze tool by generating and saving keys to an ENV_FILE (default: .env)
vurze decorate <file.py> # Add cryptographic decorators to all functions/classes in <file.py>
vurze check <file.py> # Verify the integrity and validity of vurze decorators in <file.py>
vurze remove <file.py> # Remove all vurze decorators from <file.py>
vurze --help # Show all available commands and options
```
## How It Works
vurze works by automatically injecting cryptographic decorators into your Python functions and classes. Here’s how the process works:
### Step-by-Step Example
Suppose you have a file `fibonacci.py`:
```python
def fibonacci(n):
if n <= 0:
return 0
elif n == 1:
return 1
else:
return fibonacci(n-1) + fibonacci(n-2)
```
#### 1. Decorate the file
```shell
$ vurze decorate fibonacci.py
Successfully added decorators to fibonacci.py
```
```python
@vurze._GnCLaWr9B6TD524JZ3v1CENXmo5Drwfgvc9arVagbghQ6hMH4Aqc8whs3Tf57pkTjsAVNDybviW9XG5Eu3JSP6T()
def fibonacci(n):
if n <= 0:
return 0
elif n == 1:
return 1
else:
return fibonacci(n-1) + fibonacci(n-2)
```
#### 2. Check integrity
```shell
$ vurze check fibonacci.py
All decorators are valid!
```
#### 3. Tamper with the code (change return 0 to return 42)
```python
@vurze._GnCLaWr9B6TD524JZ3v1CENXmo5Drwfgvc9arVagbghQ6hMH4Aqc8whs3Tf57pkTjsAVNDybviW9XG5Eu3JSP6T()
def fibonacci(n):
if n <= 0:
return 42
elif n == 1:
return 1
else:
return fibonacci(n-1) + fibonacci(n-2)
```
#### 4. Check again
```shell
$ vurze check fibonacci.py
âś— 1 decorator(s) failed verification!
```
## Use Cases
- **Version controlling MCP servers:**
- Ensure that all code running on MCP servers is cryptographically signed and verifiable, preventing unauthorized changes and maintaining a trusted execution environment.
- Detect and block tampered or malicious code before it is executed, reducing the risk of upstream supply chain attacks.
## Contributing
**🙌 Contributions are welcome!**
If you have suggestions, bug reports, or want to help improve vurze, feel free to open an [issue](https://github.com/MCP-Security-Research/vurze/issues) or submit a pull request.
All ideas and contributions are appreciated—thanks for helping make vurze better!
## License
vurze is licensed under the MIT License. See [LICENSE](LICENSE) for details.
Raw data
{
"_id": null,
"home_page": null,
"name": "vurze",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "rust, python, decorator, version-control, cryptography",
"author": "Aidan Dyga",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/6a/c6/5db2f0a5332e0b463076995439e9cc96b1a8924ab0f1435092a4a0539491/vurze-0.1.0.tar.gz",
"platform": null,
"description": "# vurze\n\nVersion control your Python functions and classes with automated cryptographic decorator injection\n\n> \ud83d\udca1 **code version controls code**\n\n- \ud83e\udd80 Built with the [maturin build system](https://www.maturin.rs/) for easy Rust-Python packaging\n- \ud83d\udd17 [PyO3](https://pyo3.rs/v0.27.1/index.html) bindings for seamless Python-Rust integration\n- \ud83d\udd0f [Ed25519](https://docs.rs/ed25519-dalek/latest/ed25519_dalek/) signatures to ensure code integrity and authorship\n- \ud83d\udda5\ufe0f [Typer](https://typer.tiangolo.com/) for a clean and user-friendly command line interface\n\nvurze helps you maintain code integrity by automatically adding cryptographic signatures to your Python functions and classes. Each function or class receives a unique decorator containing a cryptographic signature that verifies both authorship and integrity, making it easy to detect unauthorized code modifications.\n\n## Table of Contents\n\n1. [Getting Started](#getting-started)\n2. [Usage](#usage)\n3. [How It Works](#how-it-works)\n4. [Use Cases](#use-cases)\n5. [Contributing](#contributing)\n6. [License](#license)\n\n## Getting Started\n\n```shell\npip install vurze\n# or\nuv pip install vurze\n```\n\n## Usage\n\n```shell\nvurze init [ENV_FILE] # Initialize the vurze tool by generating and saving keys to an ENV_FILE (default: .env)\nvurze decorate <file.py> # Add cryptographic decorators to all functions/classes in <file.py>\nvurze check <file.py> # Verify the integrity and validity of vurze decorators in <file.py>\nvurze remove <file.py> # Remove all vurze decorators from <file.py>\nvurze --help # Show all available commands and options\n```\n\n## How It Works\n\nvurze works by automatically injecting cryptographic decorators into your Python functions and classes. Here\u2019s how the process works:\n\n### Step-by-Step Example\n\nSuppose you have a file `fibonacci.py`:\n\n```python\ndef fibonacci(n):\n if n <= 0:\n return 0\n elif n == 1:\n return 1\n else:\n return fibonacci(n-1) + fibonacci(n-2)\n```\n\n#### 1. Decorate the file\n\n```shell\n$ vurze decorate fibonacci.py\nSuccessfully added decorators to fibonacci.py\n```\n\n```python\n@vurze._GnCLaWr9B6TD524JZ3v1CENXmo5Drwfgvc9arVagbghQ6hMH4Aqc8whs3Tf57pkTjsAVNDybviW9XG5Eu3JSP6T()\ndef fibonacci(n):\n if n <= 0:\n return 0\n elif n == 1:\n return 1\n else:\n return fibonacci(n-1) + fibonacci(n-2)\n```\n\n#### 2. Check integrity\n\n```shell\n$ vurze check fibonacci.py\nAll decorators are valid!\n```\n\n#### 3. Tamper with the code (change return 0 to return 42)\n\n```python\n@vurze._GnCLaWr9B6TD524JZ3v1CENXmo5Drwfgvc9arVagbghQ6hMH4Aqc8whs3Tf57pkTjsAVNDybviW9XG5Eu3JSP6T()\ndef fibonacci(n):\n if n <= 0:\n return 42\n elif n == 1:\n return 1\n else:\n return fibonacci(n-1) + fibonacci(n-2)\n```\n\n#### 4. Check again\n\n```shell\n$ vurze check fibonacci.py\n\u2717 1 decorator(s) failed verification!\n```\n\n## Use Cases\n\n- **Version controlling MCP servers:**\n - Ensure that all code running on MCP servers is cryptographically signed and verifiable, preventing unauthorized changes and maintaining a trusted execution environment.\n - Detect and block tampered or malicious code before it is executed, reducing the risk of upstream supply chain attacks.\n\n## Contributing\n\n**\ud83d\ude4c Contributions are welcome!**\n\nIf you have suggestions, bug reports, or want to help improve vurze, feel free to open an [issue](https://github.com/MCP-Security-Research/vurze/issues) or submit a pull request.\n\nAll ideas and contributions are appreciated\u2014thanks for helping make vurze better!\n\n## License\n\nvurze is licensed under the MIT License. See [LICENSE](LICENSE) for details.\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Version control your Python functions and classes with automated cryptographic decorator injection.",
"version": "0.1.0",
"project_urls": {
"Issues": "https://github.com/MCP-Security-Research/vurze/issues",
"Repository": "https://github.com/MCP-Security-Research/vurze"
},
"split_keywords": [
"rust",
" python",
" decorator",
" version-control",
" cryptography"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "35df54a1db537da9a8eddbab0fa268441854321034f19b9a1d1ffa75f5148e7c",
"md5": "3dc130829d10bd56ba7d015b81898c1d",
"sha256": "b674273488ebcc9f1250166feb515fdf33343a5711336a8ae9d80e4174e717e7"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3dc130829d10bd56ba7d015b81898c1d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 315118,
"upload_time": "2025-10-29T17:37:30",
"upload_time_iso_8601": "2025-10-29T17:37:30.111666Z",
"url": "https://files.pythonhosted.org/packages/35/df/54a1db537da9a8eddbab0fa268441854321034f19b9a1d1ffa75f5148e7c/vurze-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ae3f62c63fe02c6763fdcbbd7c1a0fc28368c4232204897bfb55e4d9b9b2d01",
"md5": "6d5a51da08f8f346c7677946dca0afcf",
"sha256": "dd0929f414bbfaa3696d8dc05306eeeeba7f841a1850e1926bfd5332cdaec426"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "6d5a51da08f8f346c7677946dca0afcf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 343065,
"upload_time": "2025-10-29T17:37:46",
"upload_time_iso_8601": "2025-10-29T17:37:46.403644Z",
"url": "https://files.pythonhosted.org/packages/6a/e3/f62c63fe02c6763fdcbbd7c1a0fc28368c4232204897bfb55e4d9b9b2d01/vurze-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a92ed796298d2580cfbc42a7018b2dc73c0fe6eea32b090eb1fa7931f701e44c",
"md5": "431f54a54b6e64490b6afe18245e7732",
"sha256": "a1eadd31e469a6d5f0f268b68a1fc3d75b652cae87c4fe81ede76f42018f24cb"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "431f54a54b6e64490b6afe18245e7732",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 459909,
"upload_time": "2025-10-29T17:38:00",
"upload_time_iso_8601": "2025-10-29T17:38:00.139717Z",
"url": "https://files.pythonhosted.org/packages/a9/2e/d796298d2580cfbc42a7018b2dc73c0fe6eea32b090eb1fa7931f701e44c/vurze-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e54a104fa6281e8d3fee0f6c027a0aed33f1379ee03cf2b95886d20945ef7a4a",
"md5": "e74ea7a1763a6c75a869cf0f8d0d9226",
"sha256": "b1d52a63e70e7acd8e57955895da7d28f931cb7feff573a074c308e5af18c23b"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e74ea7a1763a6c75a869cf0f8d0d9226",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 341876,
"upload_time": "2025-10-29T17:38:12",
"upload_time_iso_8601": "2025-10-29T17:38:12.999025Z",
"url": "https://files.pythonhosted.org/packages/e5/4a/104fa6281e8d3fee0f6c027a0aed33f1379ee03cf2b95886d20945ef7a4a/vurze-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f0a596ed54353c038660ba6715bb450eb30a9e3d74660a45a74a786c10d2145",
"md5": "6ddc3315157caa8a3facb28e82821b00",
"sha256": "8c20748b614d709f9632cc76737a5d9b9bf6a01e385d0466349fc5c247240a37"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6ddc3315157caa8a3facb28e82821b00",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 343116,
"upload_time": "2025-10-29T17:38:37",
"upload_time_iso_8601": "2025-10-29T17:38:37.787551Z",
"url": "https://files.pythonhosted.org/packages/7f/0a/596ed54353c038660ba6715bb450eb30a9e3d74660a45a74a786c10d2145/vurze-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f62eb22dc519b55d55750831d1f7282d4a18abf75bfc6d65cf78f4c563c0d85",
"md5": "75e6a9dd160dccea6b049dacb5da8b8f",
"sha256": "0f844c7fc03cdc4d474f8e321721a2cb35b95b07e3933297a5cba8a3532ce0b9"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "75e6a9dd160dccea6b049dacb5da8b8f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 356178,
"upload_time": "2025-10-29T17:38:27",
"upload_time_iso_8601": "2025-10-29T17:38:27.291468Z",
"url": "https://files.pythonhosted.org/packages/9f/62/eb22dc519b55d55750831d1f7282d4a18abf75bfc6d65cf78f4c563c0d85/vurze-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "788e82b277e04687192ef81634675fb31533370a66ed3323a5d2f2ce6b8f806e",
"md5": "461e7629a0f7a222d606d758fa5fb4b9",
"sha256": "5c5b3f0af97672db35edcc81aaa685841ff905f1181ec5d2b251f5cbe448928c"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "461e7629a0f7a222d606d758fa5fb4b9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 495926,
"upload_time": "2025-10-29T17:38:57",
"upload_time_iso_8601": "2025-10-29T17:38:57.006186Z",
"url": "https://files.pythonhosted.org/packages/78/8e/82b277e04687192ef81634675fb31533370a66ed3323a5d2f2ce6b8f806e/vurze-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2029783cd98adaff6a2499e0cf902ed150b74dd6cc0a55c20a8dad697d2e4979",
"md5": "615ae53de249c98a54f7239a035b0625",
"sha256": "f8e296378c50ee366370a9226457d3aa94288c7ae8c6f697a7ea41deeec8f322"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "615ae53de249c98a54f7239a035b0625",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 606719,
"upload_time": "2025-10-29T17:39:10",
"upload_time_iso_8601": "2025-10-29T17:39:10.851801Z",
"url": "https://files.pythonhosted.org/packages/20/29/783cd98adaff6a2499e0cf902ed150b74dd6cc0a55c20a8dad697d2e4979/vurze-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4c0e4b7f130cea942bc3919b56ecdd860d8cbd6cedb5becde7b20c293d6e62d",
"md5": "b9cd29556a508d4fd2fa54d846e064ee",
"sha256": "00d4ef8e10b61be817e4bcd516fb72a74c347b7696bc267003b989cbc74ebd3d"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b9cd29556a508d4fd2fa54d846e064ee",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 531494,
"upload_time": "2025-10-29T17:39:28",
"upload_time_iso_8601": "2025-10-29T17:39:28.660154Z",
"url": "https://files.pythonhosted.org/packages/c4/c0/e4b7f130cea942bc3919b56ecdd860d8cbd6cedb5becde7b20c293d6e62d/vurze-0.1.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a8873fdf148eb673f34948870a9ef2f8f1c7ad811cc5e5938139da366362ea1",
"md5": "aa161b35b2bf6732b531bbc2179e363a",
"sha256": "3fb71aa72889db7180af2b405061a7a65d2a8a4de676e00307d4cb3a46606797"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "aa161b35b2bf6732b531bbc2179e363a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 506205,
"upload_time": "2025-10-29T17:39:41",
"upload_time_iso_8601": "2025-10-29T17:39:41.921387Z",
"url": "https://files.pythonhosted.org/packages/4a/88/73fdf148eb673f34948870a9ef2f8f1c7ad811cc5e5938139da366362ea1/vurze-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "83cadaebcd1c51171c1e44217dbcc361e889cf1d6b975120ecccdb4a650779c1",
"md5": "7ed0c1059737873a3edba8ee31c7c0f7",
"sha256": "52addefab5f15eb13f9978515cff31cb966ae420fd771e157115aded0003c3d5"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "7ed0c1059737873a3edba8ee31c7c0f7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 199884,
"upload_time": "2025-10-29T17:39:55",
"upload_time_iso_8601": "2025-10-29T17:39:55.429022Z",
"url": "https://files.pythonhosted.org/packages/83/ca/daebcd1c51171c1e44217dbcc361e889cf1d6b975120ecccdb4a650779c1/vurze-0.1.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b5121eb9a02ed1b1ac83028be59349ff7ac2138e0e37c5ec1af5b907d18cbf5",
"md5": "02169b65716cb47098e6065c57ebe2cd",
"sha256": "a6289b3b5a7515173f16fea2113e1a2d02e9979dfecc0d24b4d977e760accf96"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "02169b65716cb47098e6065c57ebe2cd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 312783,
"upload_time": "2025-10-29T17:38:52",
"upload_time_iso_8601": "2025-10-29T17:38:52.803578Z",
"url": "https://files.pythonhosted.org/packages/9b/51/21eb9a02ed1b1ac83028be59349ff7ac2138e0e37c5ec1af5b907d18cbf5/vurze-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "33ed068ddaed30a373caabb8414da7acdcebf4bab80ea2caf280eb8d0b17a029",
"md5": "f7f19f1d75f8a7fdd84596127adb4968",
"sha256": "6f8eeff03eda3f6bde8389c1b30adb0f58338fdc449dfcba340c5199752e4a59"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f7f19f1d75f8a7fdd84596127adb4968",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 283385,
"upload_time": "2025-10-29T17:38:47",
"upload_time_iso_8601": "2025-10-29T17:38:47.200789Z",
"url": "https://files.pythonhosted.org/packages/33/ed/068ddaed30a373caabb8414da7acdcebf4bab80ea2caf280eb8d0b17a029/vurze-0.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51268ba49f7a8ab1bfe7d63c7e792c8132c59ed5a059524bca0f745bd0b87c90",
"md5": "5fbdef90744bfbc72728b317e7226a28",
"sha256": "619331e76910046dd00b808ed50c3a3507c000185a1029cfd9333c01690bb4cf"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5fbdef90744bfbc72728b317e7226a28",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 314868,
"upload_time": "2025-10-29T17:37:31",
"upload_time_iso_8601": "2025-10-29T17:37:31.594947Z",
"url": "https://files.pythonhosted.org/packages/51/26/8ba49f7a8ab1bfe7d63c7e792c8132c59ed5a059524bca0f745bd0b87c90/vurze-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b42b353271e9cc2e6f598ee7532ff3d27d7eac867806dd56cb5f57279674783c",
"md5": "3fddd322d417de495a3cee09e8c4d7e6",
"sha256": "0880696c03cbde9a686a5592035a6d4e4b2d663967761e47e48446966e7eac63"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "3fddd322d417de495a3cee09e8c4d7e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 342879,
"upload_time": "2025-10-29T17:37:47",
"upload_time_iso_8601": "2025-10-29T17:37:47.905150Z",
"url": "https://files.pythonhosted.org/packages/b4/2b/353271e9cc2e6f598ee7532ff3d27d7eac867806dd56cb5f57279674783c/vurze-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "204b6080d5f037ba7f15c78eea029d42bb42523e923dc997ddfd6308fa566cd0",
"md5": "c0d55da736e13789d6808bd84ba1f086",
"sha256": "7d4116b9373a3db69f02cd73c713afc1b52c4b80caac9b0ad13765e7ab99edb4"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c0d55da736e13789d6808bd84ba1f086",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 459815,
"upload_time": "2025-10-29T17:38:01",
"upload_time_iso_8601": "2025-10-29T17:38:01.311428Z",
"url": "https://files.pythonhosted.org/packages/20/4b/6080d5f037ba7f15c78eea029d42bb42523e923dc997ddfd6308fa566cd0/vurze-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f4341c187abc910f356ddcd1b7961dec2a70e4a5ed61ed6354e61e83cbeb139c",
"md5": "dc6dc99840a608b282afe245201eb09d",
"sha256": "3eb2318d8d6871f4be2093722c6403130c1aaf13acca1200e43bb963ae67439b"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "dc6dc99840a608b282afe245201eb09d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 341724,
"upload_time": "2025-10-29T17:38:15",
"upload_time_iso_8601": "2025-10-29T17:38:15.452108Z",
"url": "https://files.pythonhosted.org/packages/f4/34/1c187abc910f356ddcd1b7961dec2a70e4a5ed61ed6354e61e83cbeb139c/vurze-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "605d3fdab54f615e38dd2e44b5417a30152b27a463d9ff7109d2b08c33663603",
"md5": "3d7ae332b01f2952377002424059e562",
"sha256": "03241a2b1f179049aafb5525d29398fe5c67eafde8b67405cce755c5deac917c"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3d7ae332b01f2952377002424059e562",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 342900,
"upload_time": "2025-10-29T17:38:39",
"upload_time_iso_8601": "2025-10-29T17:38:39.121858Z",
"url": "https://files.pythonhosted.org/packages/60/5d/3fdab54f615e38dd2e44b5417a30152b27a463d9ff7109d2b08c33663603/vurze-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4495f4eb53c9e400038804fefc16e87467bf824362d79cb46eef219c97f555c3",
"md5": "728b5b1863d85267af275a733204e5c0",
"sha256": "597a2ba99575a0d5699143faa311573ae8f5dfd26efe16677d0ec3e701c537bb"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "728b5b1863d85267af275a733204e5c0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 355896,
"upload_time": "2025-10-29T17:38:28",
"upload_time_iso_8601": "2025-10-29T17:38:28.381557Z",
"url": "https://files.pythonhosted.org/packages/44/95/f4eb53c9e400038804fefc16e87467bf824362d79cb46eef219c97f555c3/vurze-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca8713bfd33114d61ba27fe482faf8d0ab5438d42528c01cc3ac822e54292c9d",
"md5": "585d2a254f3d2bf5263cab85755885b1",
"sha256": "dfe80835b5ab1649ec0de51b7e3628213bb96759150dc6d009c5d5a82c656aa2"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "585d2a254f3d2bf5263cab85755885b1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 495640,
"upload_time": "2025-10-29T17:38:58",
"upload_time_iso_8601": "2025-10-29T17:38:58.292768Z",
"url": "https://files.pythonhosted.org/packages/ca/87/13bfd33114d61ba27fe482faf8d0ab5438d42528c01cc3ac822e54292c9d/vurze-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd34f1cb801b861f9290a92771f413b35354e403543c6bfd948d04e2f6855958",
"md5": "2769e7273a9bc5f10cb8b2bb7052adcf",
"sha256": "e6172ef969701dffa43d00bc0811213c8f028ff48714494d5ae585c702e0844d"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "2769e7273a9bc5f10cb8b2bb7052adcf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 606553,
"upload_time": "2025-10-29T17:39:12",
"upload_time_iso_8601": "2025-10-29T17:39:12.606247Z",
"url": "https://files.pythonhosted.org/packages/fd/34/f1cb801b861f9290a92771f413b35354e403543c6bfd948d04e2f6855958/vurze-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a15e5c689a55e63f97b50c7fdcebed33d3b5fbdbb9855d5c29e0f4822d8f4af6",
"md5": "9bd253b6d85591ee236f2e82b8a2583f",
"sha256": "24b8c26c88d0409a989be57cc496691d23fb8257325fde709b5ec4c1c13f41ac"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9bd253b6d85591ee236f2e82b8a2583f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 531303,
"upload_time": "2025-10-29T17:39:29",
"upload_time_iso_8601": "2025-10-29T17:39:29.883819Z",
"url": "https://files.pythonhosted.org/packages/a1/5e/5c689a55e63f97b50c7fdcebed33d3b5fbdbb9855d5c29e0f4822d8f4af6/vurze-0.1.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f1569b0b36391c8e52118a44aace493548850db6acf99e9b7b8d028fd539332e",
"md5": "917dccc2cc535ffd1815b5bb08bfefc0",
"sha256": "b6cb1e87c2d0ea448d5d87c1c6e52d7bcb2c0db038af9b4e086743312b00a1f4"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "917dccc2cc535ffd1815b5bb08bfefc0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 505970,
"upload_time": "2025-10-29T17:39:43",
"upload_time_iso_8601": "2025-10-29T17:39:43.134878Z",
"url": "https://files.pythonhosted.org/packages/f1/56/9b0b36391c8e52118a44aace493548850db6acf99e9b7b8d028fd539332e/vurze-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4de66917222159a2e84058243f949f5eb74db373a94f111e441a6de3593aa555",
"md5": "595f1577b61de4c49754b3548aaeb3af",
"sha256": "faa6c5a6be778255080fbfb0b4c8d1265b6a40f92f15d889021b64247419c177"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "595f1577b61de4c49754b3548aaeb3af",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 199731,
"upload_time": "2025-10-29T17:39:56",
"upload_time_iso_8601": "2025-10-29T17:39:56.574891Z",
"url": "https://files.pythonhosted.org/packages/4d/e6/6917222159a2e84058243f949f5eb74db373a94f111e441a6de3593aa555/vurze-0.1.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "35a458ce3db08b5eac00363c6f3dfedc750d385d4604db08e7b5e7a4ccc6f8a4",
"md5": "79ed509b2197bba625fb9ef18b8380df",
"sha256": "fda1ccf6e4ae4f14b8e2b6c141eed643633798c51eb636871b0b48e48f9f544d"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "79ed509b2197bba625fb9ef18b8380df",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 310744,
"upload_time": "2025-10-29T17:38:54",
"upload_time_iso_8601": "2025-10-29T17:38:54.251026Z",
"url": "https://files.pythonhosted.org/packages/35/a4/58ce3db08b5eac00363c6f3dfedc750d385d4604db08e7b5e7a4ccc6f8a4/vurze-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d225f6cba816db94fb7da5ad115378c735b05814c705163071705dd6961c4b87",
"md5": "df6b36c0bdad2b109c188b244bda5558",
"sha256": "7fe4edc527cf2cee05b848e47ea0cf43f36d4a73b5934c5ba1dae204d5db5d78"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "df6b36c0bdad2b109c188b244bda5558",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 281663,
"upload_time": "2025-10-29T17:38:48",
"upload_time_iso_8601": "2025-10-29T17:38:48.342529Z",
"url": "https://files.pythonhosted.org/packages/d2/25/f6cba816db94fb7da5ad115378c735b05814c705163071705dd6961c4b87/vurze-0.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ffb255ae835064a36baa8b9763f86c27920b4b9c744eadaca6fb011a56051c87",
"md5": "999741bdacbc142638f55b0e0158ebd0",
"sha256": "59a3eaa994d993af45844891ea749026cb2e24d506ce7a6282ede68dadea3809"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "999741bdacbc142638f55b0e0158ebd0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 314143,
"upload_time": "2025-10-29T17:37:34",
"upload_time_iso_8601": "2025-10-29T17:37:34.457048Z",
"url": "https://files.pythonhosted.org/packages/ff/b2/55ae835064a36baa8b9763f86c27920b4b9c744eadaca6fb011a56051c87/vurze-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2239636560d7a2c6b1086a5ec313738c65840b6fcc0ca7ea30735eee0758887c",
"md5": "ecd54cdcf253eaaa6d2a383fa5bde91d",
"sha256": "176521fc51e7db6b4795b89d36515f919bc2d31017f44c995314121ce0d2769d"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ecd54cdcf253eaaa6d2a383fa5bde91d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 342044,
"upload_time": "2025-10-29T17:37:50",
"upload_time_iso_8601": "2025-10-29T17:37:50.093112Z",
"url": "https://files.pythonhosted.org/packages/22/39/636560d7a2c6b1086a5ec313738c65840b6fcc0ca7ea30735eee0758887c/vurze-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c994a7552cb0559440238fbdc2b878c1c84e7072e70c0dbf33933535f5dca66",
"md5": "6d8d6d32bd3a54c49ff788f1964fa1bf",
"sha256": "1e3284945fd90fb70c33544c102a451b2368044870799fe8568b03ffc54ec3fc"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6d8d6d32bd3a54c49ff788f1964fa1bf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 457806,
"upload_time": "2025-10-29T17:38:02",
"upload_time_iso_8601": "2025-10-29T17:38:02.602441Z",
"url": "https://files.pythonhosted.org/packages/7c/99/4a7552cb0559440238fbdc2b878c1c84e7072e70c0dbf33933535f5dca66/vurze-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ee858036c4ab0e88c1e78be5e4d1a0c7717e30cb6f735a4062b32371b8f6913",
"md5": "e1bdf17d2d74077af2bdd027a0a4ed80",
"sha256": "c60e7cf1b971a1ec00512730af053e7683c27d1028683bf228e604a305d6e577"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e1bdf17d2d74077af2bdd027a0a4ed80",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 341292,
"upload_time": "2025-10-29T17:38:16",
"upload_time_iso_8601": "2025-10-29T17:38:16.980573Z",
"url": "https://files.pythonhosted.org/packages/5e/e8/58036c4ab0e88c1e78be5e4d1a0c7717e30cb6f735a4062b32371b8f6913/vurze-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3081918e26f32eeac8183df9d432e4ffadff13f041da1ed5e924697bbfa87d1",
"md5": "ab758744ca9fd1a0c6fb1284212f3c0a",
"sha256": "82d3d2a21cd81bbf7039b0af34c66d2c3166525ca05a92a7cda7369564e7966f"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ab758744ca9fd1a0c6fb1284212f3c0a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 342232,
"upload_time": "2025-10-29T17:38:40",
"upload_time_iso_8601": "2025-10-29T17:38:40.258408Z",
"url": "https://files.pythonhosted.org/packages/b3/08/1918e26f32eeac8183df9d432e4ffadff13f041da1ed5e924697bbfa87d1/vurze-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd836831076b056fca7a7c20be8fc78af46d77922d193eab713db11458ecb343",
"md5": "7d48a7b78f7849aaa82cf0252417d1a7",
"sha256": "82d540efcebbd74881487c053e2b2cce27b4b1b972654c5865ef1bb3d1a2e992"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7d48a7b78f7849aaa82cf0252417d1a7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 355248,
"upload_time": "2025-10-29T17:38:29",
"upload_time_iso_8601": "2025-10-29T17:38:29.561494Z",
"url": "https://files.pythonhosted.org/packages/cd/83/6831076b056fca7a7c20be8fc78af46d77922d193eab713db11458ecb343/vurze-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7cfda1c02378a34d5716a1f784fd823caecebf0c6b49b2f4c5e1316b4fa46c76",
"md5": "3257f31b72dd1fa1a2c7b0e16e7c2b91",
"sha256": "e1009c7acd93bcb21dcb25c49bb1822c26ad2441ef7802d666ac884f1a075e49"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3257f31b72dd1fa1a2c7b0e16e7c2b91",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 494682,
"upload_time": "2025-10-29T17:38:59",
"upload_time_iso_8601": "2025-10-29T17:38:59.481485Z",
"url": "https://files.pythonhosted.org/packages/7c/fd/a1c02378a34d5716a1f784fd823caecebf0c6b49b2f4c5e1316b4fa46c76/vurze-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8be47b41af79b905aa3f8f163dba4a5b0d9c5a8dcece74b6ae9d8fc7703d3226",
"md5": "26228f06ff6dad086bbb4e846200b1cb",
"sha256": "71c7aa6ffd4e929f3c96c574f73cc7366e94a3f570d499bf346fa059c2237c48"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "26228f06ff6dad086bbb4e846200b1cb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 605966,
"upload_time": "2025-10-29T17:39:13",
"upload_time_iso_8601": "2025-10-29T17:39:13.874324Z",
"url": "https://files.pythonhosted.org/packages/8b/e4/7b41af79b905aa3f8f163dba4a5b0d9c5a8dcece74b6ae9d8fc7703d3226/vurze-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5fcf426adaceb0e0457bc5a063952f5f57f69e87b47e254c55044016f94bd674",
"md5": "94c58a96b12530e8cf53dec25b02d970",
"sha256": "92275ee0938da70413431cb3714781c5f7a54e19e73088d991ff6c67a66f18de"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "94c58a96b12530e8cf53dec25b02d970",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 530730,
"upload_time": "2025-10-29T17:39:31",
"upload_time_iso_8601": "2025-10-29T17:39:31.137368Z",
"url": "https://files.pythonhosted.org/packages/5f/cf/426adaceb0e0457bc5a063952f5f57f69e87b47e254c55044016f94bd674/vurze-0.1.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a254c415840b948a9e4d0615a1b7d69e5d264e72549a34e9be1c670c1bdb4e3",
"md5": "9127a50a8554c6b0b7df69179cff55b8",
"sha256": "fdba19dab5b3a08fa16894bb483daf6fea59d85163453c93b7edb657c201966e"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9127a50a8554c6b0b7df69179cff55b8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 505515,
"upload_time": "2025-10-29T17:39:44",
"upload_time_iso_8601": "2025-10-29T17:39:44.444119Z",
"url": "https://files.pythonhosted.org/packages/0a/25/4c415840b948a9e4d0615a1b7d69e5d264e72549a34e9be1c670c1bdb4e3/vurze-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4581ac4c8cb619558329b33985eb6333c408464df46153801bcbac5279c6491f",
"md5": "db78f6efbe0bb8a199b756520993f5a1",
"sha256": "5f602ebc7c2699f2d5806f466c054a61daba9dc4239ee11adde408039345be4c"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "db78f6efbe0bb8a199b756520993f5a1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 199374,
"upload_time": "2025-10-29T17:39:57",
"upload_time_iso_8601": "2025-10-29T17:39:57.590926Z",
"url": "https://files.pythonhosted.org/packages/45/81/ac4c8cb619558329b33985eb6333c408464df46153801bcbac5279c6491f/vurze-0.1.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b231f443b5d5151a8e715d4373e2629dbf0d2b41697f0545e4b32fca8bcff73b",
"md5": "5c17d495040cacc7d29809dbc26224a4",
"sha256": "3c54bd8964a8470638074703e84fcebca71d2fc158cd98a90e34f97e7009b6cc"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "5c17d495040cacc7d29809dbc26224a4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 310853,
"upload_time": "2025-10-29T17:38:55",
"upload_time_iso_8601": "2025-10-29T17:38:55.810730Z",
"url": "https://files.pythonhosted.org/packages/b2/31/f443b5d5151a8e715d4373e2629dbf0d2b41697f0545e4b32fca8bcff73b/vurze-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ce7840257688bec8e0c64c341dea562f489665020493d265535190fa822694a",
"md5": "dea498d2f4db57c7ded24672e8335973",
"sha256": "bd3b0a486f36c21c3cd8ed1123be27b1da0049875007bb39272af4347cb82554"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dea498d2f4db57c7ded24672e8335973",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 281737,
"upload_time": "2025-10-29T17:38:49",
"upload_time_iso_8601": "2025-10-29T17:38:49.468637Z",
"url": "https://files.pythonhosted.org/packages/7c/e7/840257688bec8e0c64c341dea562f489665020493d265535190fa822694a/vurze-0.1.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0487dc7ab001d59c52f9705244eb1da1aa49b6dedfc3a4caf37112853db801b",
"md5": "23b17f6a250426c9b1bbd2ddda684b03",
"sha256": "8ef3fe85b8f069dc655170feb119a0d844a4fe22117b26d537266a718f6cf28f"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "23b17f6a250426c9b1bbd2ddda684b03",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 314321,
"upload_time": "2025-10-29T17:37:35",
"upload_time_iso_8601": "2025-10-29T17:37:35.998059Z",
"url": "https://files.pythonhosted.org/packages/b0/48/7dc7ab001d59c52f9705244eb1da1aa49b6dedfc3a4caf37112853db801b/vurze-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "219e8e4377f4fe71050785d750fb738c9c1a6ea85847b8cbcece382eba1a13f7",
"md5": "c6a82b52001f3de4bc5a69dfc26381a6",
"sha256": "6d6f0b1fa6755360aed9d5fa21c477769f0f6e5c15d88ccf1d182981ce8d428a"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c6a82b52001f3de4bc5a69dfc26381a6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 341893,
"upload_time": "2025-10-29T17:37:51",
"upload_time_iso_8601": "2025-10-29T17:37:51.364758Z",
"url": "https://files.pythonhosted.org/packages/21/9e/8e4377f4fe71050785d750fb738c9c1a6ea85847b8cbcece382eba1a13f7/vurze-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f35e47ad19aa7fc3788d2aee496bbdcaa61f69a0b46996b3368c5c317b30c399",
"md5": "dfef153b3bc3b10ff2e73349591770ef",
"sha256": "55150d8b29f2fc4ae33dc47917aa1cc48b65e81f6e05d66de079cdc1fa4c4f8c"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dfef153b3bc3b10ff2e73349591770ef",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 458377,
"upload_time": "2025-10-29T17:38:03",
"upload_time_iso_8601": "2025-10-29T17:38:03.803066Z",
"url": "https://files.pythonhosted.org/packages/f3/5e/47ad19aa7fc3788d2aee496bbdcaa61f69a0b46996b3368c5c317b30c399/vurze-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3f874e22a14aa4457364c565bcfe87a59afffb2c23be4c2a544d3c62c914fab",
"md5": "ee0254490c1e1a9bd647cb4be41a8036",
"sha256": "cfe949c5c06e829dbb3d2fa9eceef3a8f42e69d4d6e248100708b77fb225b743"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ee0254490c1e1a9bd647cb4be41a8036",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 341336,
"upload_time": "2025-10-29T17:38:18",
"upload_time_iso_8601": "2025-10-29T17:38:18.423005Z",
"url": "https://files.pythonhosted.org/packages/e3/f8/74e22a14aa4457364c565bcfe87a59afffb2c23be4c2a544d3c62c914fab/vurze-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "036ebb20fca1a7fd8ece290d6774bbe7dd29f99a0c58d0b1c12ecb061b26b0a0",
"md5": "73d0e12640865d279ece840f2ae5d491",
"sha256": "2732c4b1b4ad4232c7243297fc5a118ab95cd1c2ffe82233f6f6442f485f100a"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "73d0e12640865d279ece840f2ae5d491",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 342252,
"upload_time": "2025-10-29T17:38:41",
"upload_time_iso_8601": "2025-10-29T17:38:41.429412Z",
"url": "https://files.pythonhosted.org/packages/03/6e/bb20fca1a7fd8ece290d6774bbe7dd29f99a0c58d0b1c12ecb061b26b0a0/vurze-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "103ca4b8063dc3a5c88a61659928746b14eecc456928134a8528c251e25da001",
"md5": "0be400b01bd168c90013f88294b50dcd",
"sha256": "99c04352256e344d06dcae46a3316ffb30ad499f2bccd5aeabb1c58477fb4419"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0be400b01bd168c90013f88294b50dcd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 354840,
"upload_time": "2025-10-29T17:38:30",
"upload_time_iso_8601": "2025-10-29T17:38:30.816652Z",
"url": "https://files.pythonhosted.org/packages/10/3c/a4b8063dc3a5c88a61659928746b14eecc456928134a8528c251e25da001/vurze-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fdf79fef8c267ff921968a3032c506521b2ce01f4b4548af0f2421bae3bf8177",
"md5": "83219ddab685f6bec89be62f14464576",
"sha256": "4ff2c8d53d59598a318e509ac3ef4237c7611e0ac33daab872a83110f9b317b3"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "83219ddab685f6bec89be62f14464576",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 494863,
"upload_time": "2025-10-29T17:39:01",
"upload_time_iso_8601": "2025-10-29T17:39:01.207221Z",
"url": "https://files.pythonhosted.org/packages/fd/f7/9fef8c267ff921968a3032c506521b2ce01f4b4548af0f2421bae3bf8177/vurze-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8ee98bb140c87148a98af288a37a2341238ce4d45fbf18f5a1418db011f66b1",
"md5": "aca5bd1d2a439e0b9a6f59a7ab39becb",
"sha256": "aaf39a5e4a2384c1f15a465fd784404b4ef1c340dbd8b13ed9454b5e0ac2d537"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "aca5bd1d2a439e0b9a6f59a7ab39becb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 605834,
"upload_time": "2025-10-29T17:39:15",
"upload_time_iso_8601": "2025-10-29T17:39:15.152139Z",
"url": "https://files.pythonhosted.org/packages/a8/ee/98bb140c87148a98af288a37a2341238ce4d45fbf18f5a1418db011f66b1/vurze-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6a959960efce9f8f821f46a86a646a5c01bd1d955d7ec1ce72295d64a6532f67",
"md5": "07db27599a3fcae497e4a6d3ed3287fa",
"sha256": "8b3ea850ee40933e11acfe2262c742c81614ffc08539faec733d2b12a6e93d24"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "07db27599a3fcae497e4a6d3ed3287fa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 530521,
"upload_time": "2025-10-29T17:39:32",
"upload_time_iso_8601": "2025-10-29T17:39:32.496435Z",
"url": "https://files.pythonhosted.org/packages/6a/95/9960efce9f8f821f46a86a646a5c01bd1d955d7ec1ce72295d64a6532f67/vurze-0.1.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "edec1a112db2d84625bba2f49316e0ecfdb7599af9772f9949babd4bcd2b328e",
"md5": "97cd101045aca65a396981b80cf3799d",
"sha256": "b8aec17c77aa4c54288643972eca0e57491ccc4e9c87bc4f4e9a1f57451d8a21"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "97cd101045aca65a396981b80cf3799d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 505653,
"upload_time": "2025-10-29T17:39:45",
"upload_time_iso_8601": "2025-10-29T17:39:45.666923Z",
"url": "https://files.pythonhosted.org/packages/ed/ec/1a112db2d84625bba2f49316e0ecfdb7599af9772f9949babd4bcd2b328e/vurze-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d5634d438857643dd2358a26325ee83c4fd4747e3c9a627deeee7a99e9902e80",
"md5": "17c6a5d6f5dbd2470e9aa3954b53c9d5",
"sha256": "2d8182fb916d1ae34acc53fc592071f821af90d02cf16a9345022154d5233ae7"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "17c6a5d6f5dbd2470e9aa3954b53c9d5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 314395,
"upload_time": "2025-10-29T17:37:37",
"upload_time_iso_8601": "2025-10-29T17:37:37.924401Z",
"url": "https://files.pythonhosted.org/packages/d5/63/4d438857643dd2358a26325ee83c4fd4747e3c9a627deeee7a99e9902e80/vurze-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ad715a8bc1df8a900bf2ce1f66a156347d58784187813bf1709b924c19ca5f8",
"md5": "b7deac9350cb4b210cd25033f3fc5fd7",
"sha256": "bd601b8fc2a203c701cdc9734672ffe5154aac10daff802496b2e4a24dbbbebd"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b7deac9350cb4b210cd25033f3fc5fd7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 341848,
"upload_time": "2025-10-29T17:37:52",
"upload_time_iso_8601": "2025-10-29T17:37:52.400549Z",
"url": "https://files.pythonhosted.org/packages/2a/d7/15a8bc1df8a900bf2ce1f66a156347d58784187813bf1709b924c19ca5f8/vurze-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d41e901db3d32f022f908cd59a723e934423cb8443a3d5dc427f71545777c228",
"md5": "c329a09241722039280257816fb828ce",
"sha256": "cfc56ca061718103dff87417e0f0b96efa7cd3731ea9a726940b04e8e4840433"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c329a09241722039280257816fb828ce",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 457622,
"upload_time": "2025-10-29T17:38:05",
"upload_time_iso_8601": "2025-10-29T17:38:05.341014Z",
"url": "https://files.pythonhosted.org/packages/d4/1e/901db3d32f022f908cd59a723e934423cb8443a3d5dc427f71545777c228/vurze-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "83498f4d8949d9733f330d7e065bc202bb135bc809f6063b446710189a98e18e",
"md5": "946ebb09e297ccd2b8fd561e0a40aac2",
"sha256": "b3db317b2a979d74156c2021c579fc1de9fcbe2c8f6862eef142c7c1d24f771a"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "946ebb09e297ccd2b8fd561e0a40aac2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 341400,
"upload_time": "2025-10-29T17:38:19",
"upload_time_iso_8601": "2025-10-29T17:38:19.772379Z",
"url": "https://files.pythonhosted.org/packages/83/49/8f4d8949d9733f330d7e065bc202bb135bc809f6063b446710189a98e18e/vurze-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3376838017fa1bc233ec60b2ba388d60d1bef62160e0604331d186056858949e",
"md5": "2bf401af554fa3ba18db9a213c144234",
"sha256": "b8289863b7eeba4d40e0f4c30364e477ce24745a02e6a1b4e5ed90b9777807bb"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2bf401af554fa3ba18db9a213c144234",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 494899,
"upload_time": "2025-10-29T17:39:02",
"upload_time_iso_8601": "2025-10-29T17:39:02.463914Z",
"url": "https://files.pythonhosted.org/packages/33/76/838017fa1bc233ec60b2ba388d60d1bef62160e0604331d186056858949e/vurze-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64242e36a460a01ca5180bf7bf2c3978a06d47e355a143d035650612378bb306",
"md5": "e88116071af85c82fa8a4d26d0c54a39",
"sha256": "86793f195122991d7df5c483309db458f9019656a29df241f5eeca194891e35e"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "e88116071af85c82fa8a4d26d0c54a39",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 605923,
"upload_time": "2025-10-29T17:39:17",
"upload_time_iso_8601": "2025-10-29T17:39:17.098597Z",
"url": "https://files.pythonhosted.org/packages/64/24/2e36a460a01ca5180bf7bf2c3978a06d47e355a143d035650612378bb306/vurze-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c228ad0ead79e5c356b28a98817d4d845f0f0eaf6e8c0da26d5c4889cb1cfaf4",
"md5": "8d014e24d129831bfa9af40a6b688e28",
"sha256": "315970d92d206b76fcf0916554c5133bab74b04a8fd0ec5ec153bdead653b6ce"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8d014e24d129831bfa9af40a6b688e28",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 530645,
"upload_time": "2025-10-29T17:39:34",
"upload_time_iso_8601": "2025-10-29T17:39:34.041012Z",
"url": "https://files.pythonhosted.org/packages/c2/28/ad0ead79e5c356b28a98817d4d845f0f0eaf6e8c0da26d5c4889cb1cfaf4/vurze-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89be02b820d950a098ae766718922c7e340f6add10da208106fe531706d8a502",
"md5": "38972251e2c6732a0f668a72f39c804d",
"sha256": "96dd83542f0caaa2b40660212c0904757a2ca4074773a0b500b87f7e82b8c85e"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "38972251e2c6732a0f668a72f39c804d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 505559,
"upload_time": "2025-10-29T17:39:46",
"upload_time_iso_8601": "2025-10-29T17:39:46.846997Z",
"url": "https://files.pythonhosted.org/packages/89/be/02b820d950a098ae766718922c7e340f6add10da208106fe531706d8a502/vurze-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "87ec1a2a4b2cbb826aa7b4a68b40d8ddb2e8e3c6aea6600a463dcf82080c41ff",
"md5": "fa2e668846811b59ff6fa06afd89f39d",
"sha256": "0d495a7f6115bd04d9b2e77a82c133444beef17e41c2e686680b37df850a7baf"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "fa2e668846811b59ff6fa06afd89f39d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 199459,
"upload_time": "2025-10-29T17:39:58",
"upload_time_iso_8601": "2025-10-29T17:39:58.604415Z",
"url": "https://files.pythonhosted.org/packages/87/ec/1a2a4b2cbb826aa7b4a68b40d8ddb2e8e3c6aea6600a463dcf82080c41ff/vurze-0.1.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92ae98b541272cba0f9ed81b53543db4c8bd32bbf9f3270c193fb85c6bee120e",
"md5": "b37940c6ef9a0e53c205b88525440ceb",
"sha256": "68bc0b64a08e5cb512a5cbabd9a3db276bcd9c657801da776d19b706513ac516"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b37940c6ef9a0e53c205b88525440ceb",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 281859,
"upload_time": "2025-10-29T17:38:50",
"upload_time_iso_8601": "2025-10-29T17:38:50.639581Z",
"url": "https://files.pythonhosted.org/packages/92/ae/98b541272cba0f9ed81b53543db4c8bd32bbf9f3270c193fb85c6bee120e/vurze-0.1.0-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e41e935fceb18a3362c7c5a59c83e38b559eba81a245f2d1cbe36c1e8728666b",
"md5": "0159dfc5dbd9f0d6cc54c4709111b70c",
"sha256": "eec044b2a18c00bb79b5ecab8a8caacd9378dd126e5bf2813e6f12f086d68e08"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0159dfc5dbd9f0d6cc54c4709111b70c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 342121,
"upload_time": "2025-10-29T17:38:42",
"upload_time_iso_8601": "2025-10-29T17:38:42.541653Z",
"url": "https://files.pythonhosted.org/packages/e4/1e/935fceb18a3362c7c5a59c83e38b559eba81a245f2d1cbe36c1e8728666b/vurze-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "76186b0ea5456f9c1ada12e10a9224743947c710ee6f4de18be5af77f49bc370",
"md5": "21b6643d1cd751ab6f29e38e9bbf22b0",
"sha256": "7291d6a762e563e335155ea3e8cebc5088e5c51445585d246121226da9cc26aa"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "21b6643d1cd751ab6f29e38e9bbf22b0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 355141,
"upload_time": "2025-10-29T17:38:32",
"upload_time_iso_8601": "2025-10-29T17:38:32.172479Z",
"url": "https://files.pythonhosted.org/packages/76/18/6b0ea5456f9c1ada12e10a9224743947c710ee6f4de18be5af77f49bc370/vurze-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "93ac1b986ad3aba75d26d820b50aa460638fc748ee36f8c436ce2cb136348009",
"md5": "0154166a4035f74d20cb20f940acb8b8",
"sha256": "cc5cb7327b085a9b4befa45f5125d3a4428921f098d0fce08cc75dc8482b5d3b"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp314-cp314-win32.whl",
"has_sig": false,
"md5_digest": "0154166a4035f74d20cb20f940acb8b8",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 194265,
"upload_time": "2025-10-29T17:40:02",
"upload_time_iso_8601": "2025-10-29T17:40:02.896658Z",
"url": "https://files.pythonhosted.org/packages/93/ac/1b986ad3aba75d26d820b50aa460638fc748ee36f8c436ce2cb136348009/vurze-0.1.0-cp314-cp314-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01d20e56350028134abcb7986310605f049a47ff5ebeff74fc21a169aade05a4",
"md5": "9efb2f72454df9b9f2bd6591a9e00b68",
"sha256": "70edf9297c1639cba7edba4f44a2e224bb316c888fa7cc3a4468a569fe507225"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "9efb2f72454df9b9f2bd6591a9e00b68",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 199739,
"upload_time": "2025-10-29T17:39:59",
"upload_time_iso_8601": "2025-10-29T17:39:59.694493Z",
"url": "https://files.pythonhosted.org/packages/01/d2/0e56350028134abcb7986310605f049a47ff5ebeff74fc21a169aade05a4/vurze-0.1.0-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "419faded38f09f9b6644e924f3da8c9b154c9e0c6630e85d3944a761acae285b",
"md5": "9b6723bb62b11df2972f11b1a51d6acc",
"sha256": "79e9217fe5ce95b556a3b5ab265375f441aec0a4807ca4124b3f5cfccb4796d4"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9b6723bb62b11df2972f11b1a51d6acc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 314635,
"upload_time": "2025-10-29T17:37:39",
"upload_time_iso_8601": "2025-10-29T17:37:39.167624Z",
"url": "https://files.pythonhosted.org/packages/41/9f/aded38f09f9b6644e924f3da8c9b154c9e0c6630e85d3944a761acae285b/vurze-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc6e62fa3c57e682d4186f8c85fb398beab6b18591703b309b34aea96311a6cf",
"md5": "f58654a25c208ca72c5cc4116c1fed38",
"sha256": "20220b49205d41f67caefa7ff4c1ae4195cd4e7fb98f901c2335d8af5e3bb5df"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f58654a25c208ca72c5cc4116c1fed38",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 342701,
"upload_time": "2025-10-29T17:37:53",
"upload_time_iso_8601": "2025-10-29T17:37:53.505544Z",
"url": "https://files.pythonhosted.org/packages/bc/6e/62fa3c57e682d4186f8c85fb398beab6b18591703b309b34aea96311a6cf/vurze-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "386ab11cd6f19cdc58b39dfbe3a039ab068e7d9bda7f156603d85c678bc67bfe",
"md5": "5a46c229b7109fc5f1c712d9813b3d3d",
"sha256": "c456d0844689ed30122fc232610870984d13aff7bc29f4e15fa06833bbd0a430"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5a46c229b7109fc5f1c712d9813b3d3d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 459669,
"upload_time": "2025-10-29T17:38:06",
"upload_time_iso_8601": "2025-10-29T17:38:06.612336Z",
"url": "https://files.pythonhosted.org/packages/38/6a/b11cd6f19cdc58b39dfbe3a039ab068e7d9bda7f156603d85c678bc67bfe/vurze-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3037ed30cf96807b0cab29a8e52275b127ad596999892b7553c6b600e687997e",
"md5": "812e16c701abb0c9facd32848559de21",
"sha256": "3850ff89d76a33df26fbe5c4ed56d6b63f3f59a64cb0c6eb453d0c4b7fd83861"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "812e16c701abb0c9facd32848559de21",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 341440,
"upload_time": "2025-10-29T17:38:20",
"upload_time_iso_8601": "2025-10-29T17:38:20.882580Z",
"url": "https://files.pythonhosted.org/packages/30/37/ed30cf96807b0cab29a8e52275b127ad596999892b7553c6b600e687997e/vurze-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e383572ae8578e5c2f1ce6ed1c801a484d3a395874c1e31acfad526abae2c16c",
"md5": "e43abe167e2e2a906345d0f62dc2fb99",
"sha256": "73eb84d19e485b88ec3faa1e5a1a63da7312944d6273898ad2166ded5f3e9339"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e43abe167e2e2a906345d0f62dc2fb99",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 343016,
"upload_time": "2025-10-29T17:38:43",
"upload_time_iso_8601": "2025-10-29T17:38:43.686157Z",
"url": "https://files.pythonhosted.org/packages/e3/83/572ae8578e5c2f1ce6ed1c801a484d3a395874c1e31acfad526abae2c16c/vurze-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2eee299b6c5bedffd668cec297801a9760db05a6dc7bc2aed8c648fec7bf53ce",
"md5": "620516a708a4bd2c8da1fda007d6e7d6",
"sha256": "c1811a724c089d311102cce2ad7baba4f1814d66536b911b24dbbf9709ac1a7a"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "620516a708a4bd2c8da1fda007d6e7d6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 355736,
"upload_time": "2025-10-29T17:38:33",
"upload_time_iso_8601": "2025-10-29T17:38:33.655260Z",
"url": "https://files.pythonhosted.org/packages/2e/ee/299b6c5bedffd668cec297801a9760db05a6dc7bc2aed8c648fec7bf53ce/vurze-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "65bc364b4f7c159fd22f0634c14a7eeb4c93e9df28e7595b6b1c119efabc0360",
"md5": "5bdd3bcd16f4b9295311e6c66a478f95",
"sha256": "c5ea5f59a88ec2b0479b57e0860b4c1890a4c63792ec61893739b1e6bca69caa"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5bdd3bcd16f4b9295311e6c66a478f95",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 495298,
"upload_time": "2025-10-29T17:39:03",
"upload_time_iso_8601": "2025-10-29T17:39:03.710401Z",
"url": "https://files.pythonhosted.org/packages/65/bc/364b4f7c159fd22f0634c14a7eeb4c93e9df28e7595b6b1c119efabc0360/vurze-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dea114ddaa11e95a0a47fcfc109eb16166e799dc703670bd09043fbbc6cf0573",
"md5": "42fa79ce0ea593d784ad431b224a7deb",
"sha256": "ced834145123a87b85768ab8122d1a5752fa98274a3e0cb9150b949edf90d42a"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "42fa79ce0ea593d784ad431b224a7deb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 606497,
"upload_time": "2025-10-29T17:39:18",
"upload_time_iso_8601": "2025-10-29T17:39:18.345111Z",
"url": "https://files.pythonhosted.org/packages/de/a1/14ddaa11e95a0a47fcfc109eb16166e799dc703670bd09043fbbc6cf0573/vurze-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c08d5ae58b50b0193bacef07da8c9f77a669dd55c61c18d2042c49af61681143",
"md5": "af917974e674ed88c6ace4cadc90aad7",
"sha256": "790efbd2f2d270552684f90b875767ffbbeaf675ecefaaaee2b9e207b8b50ada"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "af917974e674ed88c6ace4cadc90aad7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 531085,
"upload_time": "2025-10-29T17:39:35",
"upload_time_iso_8601": "2025-10-29T17:39:35.343853Z",
"url": "https://files.pythonhosted.org/packages/c0/8d/5ae58b50b0193bacef07da8c9f77a669dd55c61c18d2042c49af61681143/vurze-0.1.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2db82a17209db5e00875e9351499967ae7d2349d9157cf80279db2b7c0af92b9",
"md5": "ec66779485d12175825003b0d231ec86",
"sha256": "55164ffaca1137a2f37de817205b5962540096b1565ff9949c7eace43af5ad49"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ec66779485d12175825003b0d231ec86",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 506146,
"upload_time": "2025-10-29T17:39:48",
"upload_time_iso_8601": "2025-10-29T17:39:48.139880Z",
"url": "https://files.pythonhosted.org/packages/2d/b8/2a17209db5e00875e9351499967ae7d2349d9157cf80279db2b7c0af92b9/vurze-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7708d3985a32e913f12de8795825284f6a52e3db1368aed8a90a3c5cb5272ae5",
"md5": "1a6c1cb87978f0dba16a474c02d35455",
"sha256": "3d67cc83a62b0fd90864e1d8cb0cfbc6826c1dc97f0b77c0881737baaeff3521"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1a6c1cb87978f0dba16a474c02d35455",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 315048,
"upload_time": "2025-10-29T17:37:40",
"upload_time_iso_8601": "2025-10-29T17:37:40.597856Z",
"url": "https://files.pythonhosted.org/packages/77/08/d3985a32e913f12de8795825284f6a52e3db1368aed8a90a3c5cb5272ae5/vurze-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7e4b3e2161d44a98ae66874d13dbb5ba33d746ed125f7f09d23b41fbeaf455e",
"md5": "6b1e843b6c98226fa8793597052f6a04",
"sha256": "4c1f11d72f1e80041931b62ded9fddaa4de703214e5c321a1cc104d584a131a0"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "6b1e843b6c98226fa8793597052f6a04",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 342684,
"upload_time": "2025-10-29T17:37:54",
"upload_time_iso_8601": "2025-10-29T17:37:54.966082Z",
"url": "https://files.pythonhosted.org/packages/c7/e4/b3e2161d44a98ae66874d13dbb5ba33d746ed125f7f09d23b41fbeaf455e/vurze-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a1f6a01dedd4b84cf14019eb9a712fbb24681b610f40d35fb34e88e17e99959",
"md5": "5d5c2a3222ee2fc8c98ab1af241632e8",
"sha256": "98650bd4f150bacd003d5ec63a190eedb6fa3629a3acfc52287ce2d675025f6d"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5d5c2a3222ee2fc8c98ab1af241632e8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 460292,
"upload_time": "2025-10-29T17:38:07",
"upload_time_iso_8601": "2025-10-29T17:38:07.814889Z",
"url": "https://files.pythonhosted.org/packages/8a/1f/6a01dedd4b84cf14019eb9a712fbb24681b610f40d35fb34e88e17e99959/vurze-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1a6f3bfbedbad2bbe6b58a5d614781e74ea1025f45c061bcb54b75a7ed58e51",
"md5": "a65d4e3b32b86e6791ff43d54f929e31",
"sha256": "49157f102540a5db6a82d985117d90844ad0cc82d9873b5259522a0025a2994b"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a65d4e3b32b86e6791ff43d54f929e31",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 341802,
"upload_time": "2025-10-29T17:38:21",
"upload_time_iso_8601": "2025-10-29T17:38:21.984523Z",
"url": "https://files.pythonhosted.org/packages/e1/a6/f3bfbedbad2bbe6b58a5d614781e74ea1025f45c061bcb54b75a7ed58e51/vurze-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02def0bccb567c40938eef60256a861a7df06e73018b8cdfa49c3b66e1147a57",
"md5": "ed3b642cb63c76bb9cc91b2183f9242c",
"sha256": "f71905dd6701bd22dae29f18c0493fc9c5f3cfbae620854e74e6fd429dd727d1"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ed3b642cb63c76bb9cc91b2183f9242c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 342860,
"upload_time": "2025-10-29T17:38:44",
"upload_time_iso_8601": "2025-10-29T17:38:44.813790Z",
"url": "https://files.pythonhosted.org/packages/02/de/f0bccb567c40938eef60256a861a7df06e73018b8cdfa49c3b66e1147a57/vurze-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e34edc2eebe977ee9f32f3cf6e8385ecea7cae06dee0db26433f5e6148120ed0",
"md5": "a2252d9ecc4d581cd63eb1a96659ab32",
"sha256": "b37a169218dd2d7ec84485338cf7eaf10a648c230a7e2c8723884aba3a467fab"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "a2252d9ecc4d581cd63eb1a96659ab32",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 356023,
"upload_time": "2025-10-29T17:38:34",
"upload_time_iso_8601": "2025-10-29T17:38:34.741198Z",
"url": "https://files.pythonhosted.org/packages/e3/4e/dc2eebe977ee9f32f3cf6e8385ecea7cae06dee0db26433f5e6148120ed0/vurze-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0bcc4a0a3b1af7cead4c4e6d0e17973156bd7ae484903678630e47fd4a84070",
"md5": "24b0dca62bfb484a00d43764395b1d1f",
"sha256": "872f9236dac7e27baaf628b63d48340f9834b07d4626a40d238bee2ac6a422dc"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "24b0dca62bfb484a00d43764395b1d1f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 495580,
"upload_time": "2025-10-29T17:39:05",
"upload_time_iso_8601": "2025-10-29T17:39:05.300617Z",
"url": "https://files.pythonhosted.org/packages/b0/bc/c4a0a3b1af7cead4c4e6d0e17973156bd7ae484903678630e47fd4a84070/vurze-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "696da1c9c49f676e14e45cb333af37bea6b076fb5c82a8cd17738a8651197aee",
"md5": "053f53c796721bb438642b125ecdd944",
"sha256": "f837746475166c18c3569bb7ddaebcc324fbdb77f3e8a32b69ffe44bed347d54"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "053f53c796721bb438642b125ecdd944",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 606497,
"upload_time": "2025-10-29T17:39:19",
"upload_time_iso_8601": "2025-10-29T17:39:19.803920Z",
"url": "https://files.pythonhosted.org/packages/69/6d/a1c9c49f676e14e45cb333af37bea6b076fb5c82a8cd17738a8651197aee/vurze-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f435590fb47e18c1443b98bd3e3f291af804eabfb8b800fb30051871e0aa3cf9",
"md5": "39864550da78944af3e9ffbd368a2f4b",
"sha256": "34c54f6b6c4b9e45e50698350955e4b0d523b75ad294d6d6da38b7e4687670cf"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "39864550da78944af3e9ffbd368a2f4b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 531501,
"upload_time": "2025-10-29T17:39:36",
"upload_time_iso_8601": "2025-10-29T17:39:36.613367Z",
"url": "https://files.pythonhosted.org/packages/f4/35/590fb47e18c1443b98bd3e3f291af804eabfb8b800fb30051871e0aa3cf9/vurze-0.1.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "477a855c1b32d5822163345ffb3ff53f5711e2d0a7d8fa6d9f9d2aa45f9c30de",
"md5": "d4355985a72de3a41b8cda417c3f1a85",
"sha256": "8db8fd361dbec3711ab9f31de04de3a62a10ba22f99d475949c54fdd91c79d44"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d4355985a72de3a41b8cda417c3f1a85",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 506191,
"upload_time": "2025-10-29T17:39:49",
"upload_time_iso_8601": "2025-10-29T17:39:49.444986Z",
"url": "https://files.pythonhosted.org/packages/47/7a/855c1b32d5822163345ffb3ff53f5711e2d0a7d8fa6d9f9d2aa45f9c30de/vurze-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "376013fa7ee892ec64ebb46b7f60c008a19ee1134a2226723a22511733a1a4b3",
"md5": "375c550408914409efe4ed16a30deba3",
"sha256": "2f31c0ec3cfc69306da957facfd4f398da0a3dfb9eb8adb2d1fd5d32f0ddc43f"
},
"downloads": -1,
"filename": "vurze-0.1.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "375c550408914409efe4ed16a30deba3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 199605,
"upload_time": "2025-10-29T17:40:00",
"upload_time_iso_8601": "2025-10-29T17:40:00.861497Z",
"url": "https://files.pythonhosted.org/packages/37/60/13fa7ee892ec64ebb46b7f60c008a19ee1134a2226723a22511733a1a4b3/vurze-0.1.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "25245c73f3069205101253eb0f3b4de20de223aecf2ca0cb194d543381243d12",
"md5": "580e82573c17825926ab9058db8d9bc2",
"sha256": "783c4291357976c4af6abb6a4f50fb38d76d3e5cfe2b717ba9055c745d63fea9"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "580e82573c17825926ab9058db8d9bc2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 316015,
"upload_time": "2025-10-29T17:37:42",
"upload_time_iso_8601": "2025-10-29T17:37:42.103673Z",
"url": "https://files.pythonhosted.org/packages/25/24/5c73f3069205101253eb0f3b4de20de223aecf2ca0cb194d543381243d12/vurze-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01d7cbd2339a34bd1b0dec8c990049eac1f46fb20464dc46f760550ac3f01c1b",
"md5": "02e947448a5bffff78bcbe40c23c00bd",
"sha256": "100ff6189a2ce1bbfe6ac9e782e4d5e048a90020425e16ae01ff573693adf4be"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "02e947448a5bffff78bcbe40c23c00bd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 343949,
"upload_time": "2025-10-29T17:37:56",
"upload_time_iso_8601": "2025-10-29T17:37:56.608152Z",
"url": "https://files.pythonhosted.org/packages/01/d7/cbd2339a34bd1b0dec8c990049eac1f46fb20464dc46f760550ac3f01c1b/vurze-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8028639bb85d68a32d591dcf207e434a16e8270dbac7676cb0c210b7cb1e9458",
"md5": "1bd1fa0141d649bc1ba0302dd497aea3",
"sha256": "0be757fb144abb15265d5455d9b6d2087fa8db7b9e5b2fe558e7907c0542e92a"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1bd1fa0141d649bc1ba0302dd497aea3",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 459772,
"upload_time": "2025-10-29T17:38:09",
"upload_time_iso_8601": "2025-10-29T17:38:09.208265Z",
"url": "https://files.pythonhosted.org/packages/80/28/639bb85d68a32d591dcf207e434a16e8270dbac7676cb0c210b7cb1e9458/vurze-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e256a79e338ba77e848edf31b9e2f72e0a9f4326591a9c6348b14b59c77941fb",
"md5": "d771d46ecfa5e9466b14d6cdaeb2b81c",
"sha256": "bff216096cceee27888298fdd64e6dc04394d86b6b44274f99044c4471d17c73"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d771d46ecfa5e9466b14d6cdaeb2b81c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 342340,
"upload_time": "2025-10-29T17:38:23",
"upload_time_iso_8601": "2025-10-29T17:38:23.433297Z",
"url": "https://files.pythonhosted.org/packages/e2/56/a79e338ba77e848edf31b9e2f72e0a9f4326591a9c6348b14b59c77941fb/vurze-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b677f1b12942432d7be88f0af23c029c87c6b94a3dbaf5fde2d49b1e64ddcbe",
"md5": "d151ce7362448a0dadd8ba459a720874",
"sha256": "12b758c19a96d569b51e71bb3c333ee375519428b82314caea8a4e33aed84b1b"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d151ce7362448a0dadd8ba459a720874",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 496662,
"upload_time": "2025-10-29T17:39:06",
"upload_time_iso_8601": "2025-10-29T17:39:06.479403Z",
"url": "https://files.pythonhosted.org/packages/8b/67/7f1b12942432d7be88f0af23c029c87c6b94a3dbaf5fde2d49b1e64ddcbe/vurze-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "54adbb5837e30e7a389acaeab1f0dfc213c7586bee27a5982a7de57e1ac7ff1a",
"md5": "2bdfdffa623adc8834b205dc98bb6498",
"sha256": "0311d363b14023d608ad5232a1c5d3a7cea451f94bf15eaa1c5170059b7db0ca"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "2bdfdffa623adc8834b205dc98bb6498",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 607368,
"upload_time": "2025-10-29T17:39:21",
"upload_time_iso_8601": "2025-10-29T17:39:21.937400Z",
"url": "https://files.pythonhosted.org/packages/54/ad/bb5837e30e7a389acaeab1f0dfc213c7586bee27a5982a7de57e1ac7ff1a/vurze-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aba6fa623d9fa9de56080db472647a517b82b264987ad2fcb51192c190badbb9",
"md5": "33d6dbe24da77ef55a968b88f2bcb6b1",
"sha256": "7715e6e07fa37a2589818adee97cfce39abaf8e89e97cd44417a2bd944f6e80c"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "33d6dbe24da77ef55a968b88f2bcb6b1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 531947,
"upload_time": "2025-10-29T17:39:37",
"upload_time_iso_8601": "2025-10-29T17:39:37.868448Z",
"url": "https://files.pythonhosted.org/packages/ab/a6/fa623d9fa9de56080db472647a517b82b264987ad2fcb51192c190badbb9/vurze-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2cc3184cbba4661e5fa80f2fb8a9133469663c63b17a93ba86f6bc2b4014b396",
"md5": "3110a013a33923bf13ee216ee49a6a3d",
"sha256": "a16a54f954e83943a77282f611f05522fba38d2b7306232e15c18cccd2551d73"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3110a013a33923bf13ee216ee49a6a3d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 507060,
"upload_time": "2025-10-29T17:39:50",
"upload_time_iso_8601": "2025-10-29T17:39:50.650551Z",
"url": "https://files.pythonhosted.org/packages/2c/c3/184cbba4661e5fa80f2fb8a9133469663c63b17a93ba86f6bc2b4014b396/vurze-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee5c9a1f9af35a11b7ef8141fd1d9f379625669977ea03dbb9baf5cb26296383",
"md5": "08321443a57ed253f9fbe0af4f0b7e34",
"sha256": "19fcc6bdeef0e5d9baf8cea2bbb4a9f9ea38fc34535007e68ed9eee1f34241e5"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "08321443a57ed253f9fbe0af4f0b7e34",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 315702,
"upload_time": "2025-10-29T17:37:43",
"upload_time_iso_8601": "2025-10-29T17:37:43.607559Z",
"url": "https://files.pythonhosted.org/packages/ee/5c/9a1f9af35a11b7ef8141fd1d9f379625669977ea03dbb9baf5cb26296383/vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e337eb052202017d491797b8fd36c0b95ebd044b97907391db09bb591f8c3ff3",
"md5": "0a7786939ecbb00f1c479e118d75cb79",
"sha256": "5235b7a1486d2e82682b6acacc43751c7818afd61d03ef50d29c5133cfeb39c7"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "0a7786939ecbb00f1c479e118d75cb79",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 343868,
"upload_time": "2025-10-29T17:37:57",
"upload_time_iso_8601": "2025-10-29T17:37:57.747301Z",
"url": "https://files.pythonhosted.org/packages/e3/37/eb052202017d491797b8fd36c0b95ebd044b97907391db09bb591f8c3ff3/vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "957026505d0caee97cf55de6620cd377894225772d1f30567fdb4f25c8e4486a",
"md5": "71efb985821ccbe621cdbca4368e17e7",
"sha256": "06bd3fc6c593395df0c59a0d9371c191594f9136f41d037b3eb1419ba78455b2"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "71efb985821ccbe621cdbca4368e17e7",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 459685,
"upload_time": "2025-10-29T17:38:10",
"upload_time_iso_8601": "2025-10-29T17:38:10.546184Z",
"url": "https://files.pythonhosted.org/packages/95/70/26505d0caee97cf55de6620cd377894225772d1f30567fdb4f25c8e4486a/vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6cfdf24dcb7f2dce1319a7ecd211d0a20a7b091ac138793cde5654f2bdcb6c8e",
"md5": "0d9c30771a8a04371ecedd4e95eab786",
"sha256": "96746dd8ec1006a9610e6200be2b90473aad819b1468ff9c0d5f0c888ec039b6"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0d9c30771a8a04371ecedd4e95eab786",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 342194,
"upload_time": "2025-10-29T17:38:24",
"upload_time_iso_8601": "2025-10-29T17:38:24.609403Z",
"url": "https://files.pythonhosted.org/packages/6c/fd/f24dcb7f2dce1319a7ecd211d0a20a7b091ac138793cde5654f2bdcb6c8e/vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd033c270be7b51faeef3aac8bb7059e2a8b2c04dcf23f5e5fb145f3fdb88b83",
"md5": "8ee1e1c5121a2e1933ec1df4eed625a0",
"sha256": "9ac3a53b2b44d9d722a9bfa914b353c7e0c36e1ab94c0249a8092da6f4d543f6"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8ee1e1c5121a2e1933ec1df4eed625a0",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 343383,
"upload_time": "2025-10-29T17:38:46",
"upload_time_iso_8601": "2025-10-29T17:38:46.004698Z",
"url": "https://files.pythonhosted.org/packages/bd/03/3c270be7b51faeef3aac8bb7059e2a8b2c04dcf23f5e5fb145f3fdb88b83/vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b718a6fef3b1fe7cec8d06bd9c68d42138adaebb9f8a5ba41ffe1dd53468ba2",
"md5": "9d953fba9a888a2dfd71e0c4e26fadeb",
"sha256": "c4c78938a4c00f4de22c13954288fafaaa6e647290779bebd85e27d32bb23ea5"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "9d953fba9a888a2dfd71e0c4e26fadeb",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 356758,
"upload_time": "2025-10-29T17:38:35",
"upload_time_iso_8601": "2025-10-29T17:38:35.880529Z",
"url": "https://files.pythonhosted.org/packages/4b/71/8a6fef3b1fe7cec8d06bd9c68d42138adaebb9f8a5ba41ffe1dd53468ba2/vurze-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "882006d0be94b7da72d5a5d3d1b7fc3001ad2b98f2c679dacc842d151b8e3d57",
"md5": "b7741dded56b89703a089999dd051672",
"sha256": "b0dde2181e36ba4b1cdacff4f52ffddadea133bdfeb4c9c7c61cf69e2e66d678"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b7741dded56b89703a089999dd051672",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 496353,
"upload_time": "2025-10-29T17:39:08",
"upload_time_iso_8601": "2025-10-29T17:39:08.041131Z",
"url": "https://files.pythonhosted.org/packages/88/20/06d0be94b7da72d5a5d3d1b7fc3001ad2b98f2c679dacc842d151b8e3d57/vurze-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d849e337ab126419c0f84ac0c03004b2e0a014563552060680c1b01b1c91a53",
"md5": "69fa7ded44e4505ff7283251a44ffd30",
"sha256": "31c8ccf206d655a50f1724e0b460b71461f3e4e56d224d34c9019a0519c316b0"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "69fa7ded44e4505ff7283251a44ffd30",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 607215,
"upload_time": "2025-10-29T17:39:23",
"upload_time_iso_8601": "2025-10-29T17:39:23.553469Z",
"url": "https://files.pythonhosted.org/packages/9d/84/9e337ab126419c0f84ac0c03004b2e0a014563552060680c1b01b1c91a53/vurze-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f20dc784664ee7100641ab2a3d9d42bd6a9ee87a94a018523f639e7147a6efd",
"md5": "b50b08f039c7c17a92b2fe538cd7e215",
"sha256": "0ec7696cc38a74fb55ef309aa523e853ab4d271d76fb877af07389ec8076a963"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b50b08f039c7c17a92b2fe538cd7e215",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 531774,
"upload_time": "2025-10-29T17:39:39",
"upload_time_iso_8601": "2025-10-29T17:39:39.413799Z",
"url": "https://files.pythonhosted.org/packages/3f/20/dc784664ee7100641ab2a3d9d42bd6a9ee87a94a018523f639e7147a6efd/vurze-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57946edda7f8fe16bdab3348fd98bbce504cc9681e2e6e4acdc887d07ac6e0ff",
"md5": "0a069b3e7e120409ac068b29744c6849",
"sha256": "55e141bbee5ac06edad68e4e346a10d43639ab296c6429866c8fca8169908af7"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0a069b3e7e120409ac068b29744c6849",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 506883,
"upload_time": "2025-10-29T17:39:52",
"upload_time_iso_8601": "2025-10-29T17:39:52.403964Z",
"url": "https://files.pythonhosted.org/packages/57/94/6edda7f8fe16bdab3348fd98bbce504cc9681e2e6e4acdc887d07ac6e0ff/vurze-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "591351150b042cd9f63a1afb48724a16721f3e32b3ad27f01817bf5f4c0b561b",
"md5": "1801d21d8292a5165ca68ab078bc7cf7",
"sha256": "bf15785d37a7fca0a8240e17b8bf24c59b3cfa8b97dd3bd77b6d11307cbeb243"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1801d21d8292a5165ca68ab078bc7cf7",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 315792,
"upload_time": "2025-10-29T17:37:44",
"upload_time_iso_8601": "2025-10-29T17:37:44.675038Z",
"url": "https://files.pythonhosted.org/packages/59/13/51150b042cd9f63a1afb48724a16721f3e32b3ad27f01817bf5f4c0b561b/vurze-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30cd6bbaaf765070fd273d121f504bb6a16ed12a057921b969fad3a38295079d",
"md5": "0352936ee1742b68139346aeb2d767c1",
"sha256": "f48e5ebb7a36ceda42ca0365f8dba5741b8358e50f956333a24ecad1e838cbe2"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "0352936ee1742b68139346aeb2d767c1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 343236,
"upload_time": "2025-10-29T17:37:58",
"upload_time_iso_8601": "2025-10-29T17:37:58.988545Z",
"url": "https://files.pythonhosted.org/packages/30/cd/6bbaaf765070fd273d121f504bb6a16ed12a057921b969fad3a38295079d/vurze-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f524c9162cac2f668f21dcdd36a9ba4b24f13c5c5524a4f1220e3a907b3c55e",
"md5": "ffcc982d0a796bbcbe458de6232f71f0",
"sha256": "15d4853d81c8ad92a5412f30ef1a11db298ec54eefd4a45d21f17f8d6d0f26e5"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ffcc982d0a796bbcbe458de6232f71f0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 459807,
"upload_time": "2025-10-29T17:38:11",
"upload_time_iso_8601": "2025-10-29T17:38:11.712300Z",
"url": "https://files.pythonhosted.org/packages/3f/52/4c9162cac2f668f21dcdd36a9ba4b24f13c5c5524a4f1220e3a907b3c55e/vurze-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f2a3a4dcdf767ff642c644e142fcb55bf3a022eb69d0c9adedbee9f2da51d2f7",
"md5": "144b4f1fbe62909b651383cc3041fa47",
"sha256": "3fc5c5289ac43d632e1c4a0e58cd77b9a3731bc809afa8db532c082e43e405d8"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "144b4f1fbe62909b651383cc3041fa47",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 342650,
"upload_time": "2025-10-29T17:38:26",
"upload_time_iso_8601": "2025-10-29T17:38:26.051318Z",
"url": "https://files.pythonhosted.org/packages/f2/a3/a4dcdf767ff642c644e142fcb55bf3a022eb69d0c9adedbee9f2da51d2f7/vurze-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ab22258723104412e7b326b05308db0e63b95837f98024b0587a941210843899",
"md5": "7933ee72b8af29341c08a1c6bc696985",
"sha256": "4db6923b9a3051118b4b8b8fe3634ce149b724fc25517d776eeb8ecd6cb54d5b"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7933ee72b8af29341c08a1c6bc696985",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 496554,
"upload_time": "2025-10-29T17:39:09",
"upload_time_iso_8601": "2025-10-29T17:39:09.312583Z",
"url": "https://files.pythonhosted.org/packages/ab/22/258723104412e7b326b05308db0e63b95837f98024b0587a941210843899/vurze-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "49e3140b653898fc4a8dfcee06774febedad704a2e083fcd34a2a345cb3249ce",
"md5": "8c93a6d19f4931715a0a898147400b6d",
"sha256": "6a8646ba36404c5fe4a5b84f9cbac5fd86d585292a5b53bababd0dd7b7c9e46a"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "8c93a6d19f4931715a0a898147400b6d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 606662,
"upload_time": "2025-10-29T17:39:24",
"upload_time_iso_8601": "2025-10-29T17:39:24.885074Z",
"url": "https://files.pythonhosted.org/packages/49/e3/140b653898fc4a8dfcee06774febedad704a2e083fcd34a2a345cb3249ce/vurze-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c6dd1c9c204070eee89073adb7255a2b501c89a611708a7e387b2381cd0a4a6",
"md5": "55f595ebbf08c20f93204efd119c8122",
"sha256": "1217e8eb209821927d8c0ef346f20853af746fd9d206ded5766d15d679d3f760"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "55f595ebbf08c20f93204efd119c8122",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 531416,
"upload_time": "2025-10-29T17:39:40",
"upload_time_iso_8601": "2025-10-29T17:39:40.670744Z",
"url": "https://files.pythonhosted.org/packages/4c/6d/d1c9c204070eee89073adb7255a2b501c89a611708a7e387b2381cd0a4a6/vurze-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8604d8a107f64647fbabbcbbd552f73eabd5e0b3b19c46c4c66d6090de51c504",
"md5": "3dcf3fd4b576c7a5f79775fa69b1aeb2",
"sha256": "e9696545a976473510dc187d364f64bb6816873f9bc0c649c4ef5cf15cc1be92"
},
"downloads": -1,
"filename": "vurze-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3dcf3fd4b576c7a5f79775fa69b1aeb2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 507236,
"upload_time": "2025-10-29T17:39:53",
"upload_time_iso_8601": "2025-10-29T17:39:53.551151Z",
"url": "https://files.pythonhosted.org/packages/86/04/d8a107f64647fbabbcbbd552f73eabd5e0b3b19c46c4c66d6090de51c504/vurze-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ac65db2f0a5332e0b463076995439e9cc96b1a8924ab0f1435092a4a0539491",
"md5": "4f66c7ce714109cf6aa32941e85a44e0",
"sha256": "a9860a8c0ac294ea7f5f06befd4de633e65ee9732fd1a401a6f062f6072c8b63"
},
"downloads": -1,
"filename": "vurze-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "4f66c7ce714109cf6aa32941e85a44e0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 18586,
"upload_time": "2025-10-29T17:39:54",
"upload_time_iso_8601": "2025-10-29T17:39:54.578566Z",
"url": "https://files.pythonhosted.org/packages/6a/c6/5db2f0a5332e0b463076995439e9cc96b1a8924ab0f1435092a4a0539491/vurze-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-29 17:39:54",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "MCP-Security-Research",
"github_project": "vurze",
"github_not_found": true,
"lcname": "vurze"
}