uza


Nameuza JSON
Version 0.0.1.dev3 PyPI version JSON
download
home_pageNone
SummaryA compiler and bytecode interpreter for the uza programming language
upload_time2025-02-05 22:20:37
maintainerNone
docs_urlNone
authorM. Sanchez Lopez
requires_python>=3.10
licenseMIT License Copyright (c) 2024 msanlop Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords compiler interpreter programming language
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Uza
Uza is a simple statically typed programming language, that takes inspiration from Scala and Python.
This repo features an uza compiler/interpreter written in Python in the `uzac` directory, as well as a custom Virtual Machine written in C in the `vm` directory.

Here is fibonacci in uza:
```go
func fib(n : int) => int {
    if n <= 1 then return n
    return fib(n-1) + fib(n-2)
}

const n = 30
println(f"fib({toString(n)}) = {toString(fib(n))}")
```

# Overview
Uza has 5 primitive types:
```go
nil      // null/None type
42       // int, 64 bit
3.14     // float, double precision
true     // bool
"hello"  // string
```

There is also a `List` type and `func[_func_name_]` function type.

The typechecker has partial type inference.
Functions signatures must be type annotated and generic type variable declarations must be annotated too — for example `const foo = List()` => `const foo: List<int> = List()`.
```go
const foo = "hello world"
println(foo * 2)

// at 'println(foo * 2)'
//             ^^^Expected int but found string
```

There are no implicit conversions in uza.

```go
func halve(n: float) => float {
    return n / 2
}
const foo = 1

println(halve(foo))
// at 'println(halve(foo))'
//                   ^^^^ Error: Expected type 'float' but found 'int'

println(halve(toFloat(foo))) // 0.5
```


More examples are available in the `examples` directory.

# Installation and Build
> [!NOTE]
> Uza is a personal learning project and not meant for production use.
> Unless you like a challenge :^)


The main way to install uza is through `pip`, Python's package manager.
Installing in a `venv` removes the need to edit the PATH but requires the `venv` to be active to use uza.

## `venv` install
The `venv` environement has to be active to run uza.
#### UNIX shell
```bash
python3 -m venv venv
source ./venv/bin/activate
pip install uza
uza --help
```

#### Powershell
```powershell
python3 -m venv venv
venv\Scripts\activate
pip install uza
uza --help
```

## global `pip` install
#### UNIX
```bash
pip install uza
uza --help
```

#### Windows
```powershell
pip install uza --force-reinstall --user
uza --help
```

You might get one of the following warnings when installing uza globally:

```bash
WARNING: The script uza is installed in '/opt/homebrew/Cellar/pypy3.10/7.3.17_1/libexec/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
NOTE: The current PATH contains path(s) starting with `~`, which may not be expanded by all applications.

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

WARNING: The script uza is installed in '/home/smith/.local/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.

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

But still not in path so you have to   WARNING: The script uza.exe is installed in 'C:\Users\doe\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\LocalCache\local-packages\Python313\Scripts' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
```

To use without adding to path:
```bash
python3 -m uzac --help
```

## Build from source
> [!NOTE]
> The python compiler also has a tree-walk interpret, using the `-i` flag, for which there is no need to compile the VM. To interpret uza in python, prefer using a python interpreter with a JIT such as `pypy3` for much better performance.

```bash
git clone git@github.com:msanlop/uza.git
cd uza
mkdir build && cd build
cmake ..
make
```

You can now run uza by executing `python uza` from root dir of the repo.
### Add local installation to path (UNIX)
```bash
printf "#!$(which python3)\n$(cat uza)" > uza
export PATH=$(pwd):$PATH
./uza --help
```
Export in shell config file, e.g. `~/.bashrc`, to persist across sessions.

### Testing
```bash
pip install -r requirements.txt
pytest
```

## TODO
- Generics
- Closures, lambda functions
- Structs, methods
- Iterators
- Maps
- Modules, stdlib
- JIT, convert the interpreter to RPython and see how well it performs
- it never ends...

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "uza",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "compiler, interpreter, programming language",
    "author": "M. Sanchez Lopez",
    "author_email": null,
    "download_url": null,
    "platform": null,
    "description": "# Uza\nUza is a simple statically typed programming language, that takes inspiration from Scala and Python.\nThis repo features an uza compiler/interpreter written in Python in the `uzac` directory, as well as a custom Virtual Machine written in C in the `vm` directory.\n\nHere is fibonacci in uza:\n```go\nfunc fib(n : int) => int {\n    if n <= 1 then return n\n    return fib(n-1) + fib(n-2)\n}\n\nconst n = 30\nprintln(f\"fib({toString(n)}) = {toString(fib(n))}\")\n```\n\n# Overview\nUza has 5 primitive types:\n```go\nnil      // null/None type\n42       // int, 64 bit\n3.14     // float, double precision\ntrue     // bool\n\"hello\"  // string\n```\n\nThere is also a `List` type and `func[_func_name_]` function type.\n\nThe typechecker has partial type inference.\nFunctions signatures must be type annotated and generic type variable declarations must be annotated too \u2014 for example `const foo = List()` => `const foo: List<int> = List()`.\n```go\nconst foo = \"hello world\"\nprintln(foo * 2)\n\n// at 'println(foo * 2)'\n//             ^^^Expected int but found string\n```\n\nThere are no implicit conversions in uza.\n\n```go\nfunc halve(n: float) => float {\n    return n / 2\n}\nconst foo = 1\n\nprintln(halve(foo))\n// at 'println(halve(foo))'\n//                   ^^^^ Error: Expected type 'float' but found 'int'\n\nprintln(halve(toFloat(foo))) // 0.5\n```\n\n\nMore examples are available in the `examples` directory.\n\n# Installation and Build\n> [!NOTE]\n> Uza is a personal learning project and not meant for production use.\n> Unless you like a challenge :^)\n\n\nThe main way to install uza is through `pip`, Python's package manager.\nInstalling in a `venv` removes the need to edit the PATH but requires the `venv` to be active to use uza.\n\n## `venv` install\nThe `venv` environement has to be active to run uza.\n#### UNIX shell\n```bash\npython3 -m venv venv\nsource ./venv/bin/activate\npip install uza\nuza --help\n```\n\n#### Powershell\n```powershell\npython3 -m venv venv\nvenv\\Scripts\\activate\npip install uza\nuza --help\n```\n\n## global `pip` install\n#### UNIX\n```bash\npip install uza\nuza --help\n```\n\n#### Windows\n```powershell\npip install uza --force-reinstall --user\nuza --help\n```\n\nYou might get one of the following warnings when installing uza globally:\n\n```bash\nWARNING: The script uza is installed in '/opt/homebrew/Cellar/pypy3.10/7.3.17_1/libexec/bin' which is not on PATH.\nConsider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\nNOTE: The current PATH contains path(s) starting with `~`, which may not be expanded by all applications.\n\n------------------\n\nWARNING: The script uza is installed in '/home/smith/.local/bin' which is not on PATH.\nConsider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\n\n------------------\n\nBut still not in path so you have to   WARNING: The script uza.exe is installed in 'C:\\Users\\doe\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\Scripts' which is not on PATH.\n  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\n```\n\nTo use without adding to path:\n```bash\npython3 -m uzac --help\n```\n\n## Build from source\n> [!NOTE]\n> The python compiler also has a tree-walk interpret, using the `-i` flag, for which there is no need to compile the VM. To interpret uza in python, prefer using a python interpreter with a JIT such as `pypy3` for much better performance.\n\n```bash\ngit clone git@github.com:msanlop/uza.git\ncd uza\nmkdir build && cd build\ncmake ..\nmake\n```\n\nYou can now run uza by executing `python uza` from root dir of the repo.\n### Add local installation to path (UNIX)\n```bash\nprintf \"#!$(which python3)\\n$(cat uza)\" > uza\nexport PATH=$(pwd):$PATH\n./uza --help\n```\nExport in shell config file, e.g. `~/.bashrc`, to persist across sessions.\n\n### Testing\n```bash\npip install -r requirements.txt\npytest\n```\n\n## TODO\n- Generics\n- Closures, lambda functions\n- Structs, methods\n- Iterators\n- Maps\n- Modules, stdlib\n- JIT, convert the interpreter to RPython and see how well it performs\n- it never ends...\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2024 msanlop\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.\n        ",
    "summary": "A compiler and bytecode interpreter for the uza programming language",
    "version": "0.0.1.dev3",
    "project_urls": null,
    "split_keywords": [
        "compiler",
        " interpreter",
        " programming language"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f45125876daf48008b2e8f86bd97e8dbf72d5cd1107b4f683fb51e3314052fa",
                "md5": "c0d8389303e51c87f303df1781e46af3",
                "sha256": "7d491eb0aac79caea456c24f606e608555a607728add7e30e263e57983093520"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c0d8389303e51c87f303df1781e46af3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 58573,
            "upload_time": "2025-02-05T22:20:37",
            "upload_time_iso_8601": "2025-02-05T22:20:37.327050Z",
            "url": "https://files.pythonhosted.org/packages/5f/45/125876daf48008b2e8f86bd97e8dbf72d5cd1107b4f683fb51e3314052fa/uza-0.0.1.dev3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6af9322b1552a6e0ff25fecdca5077865ff1cc589e78266ea0a74351b5d1afbd",
                "md5": "4129c50dd0b88e452859985a460653e7",
                "sha256": "7cacab6ddb90cb07748b33362a0d534cdf4ecea457cc2ab5c5cb42431757353c"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4129c50dd0b88e452859985a460653e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 65169,
            "upload_time": "2025-02-05T22:20:38",
            "upload_time_iso_8601": "2025-02-05T22:20:38.844201Z",
            "url": "https://files.pythonhosted.org/packages/6a/f9/322b1552a6e0ff25fecdca5077865ff1cc589e78266ea0a74351b5d1afbd/uza-0.0.1.dev3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a118372e2d6e68f880ae2a0289c783b3c246a1c2fea42779ca604d31c3ff7f79",
                "md5": "d1ea20d5b1f4d9da0061883e08c266ed",
                "sha256": "784e81ef660d715350a1129b93bb3f9204651f4d2ac9b49dda887f5909ca25f0"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d1ea20d5b1f4d9da0061883e08c266ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 71309,
            "upload_time": "2025-02-05T22:20:40",
            "upload_time_iso_8601": "2025-02-05T22:20:40.176695Z",
            "url": "https://files.pythonhosted.org/packages/a1/18/372e2d6e68f880ae2a0289c783b3c246a1c2fea42779ca604d31c3ff7f79/uza-0.0.1.dev3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26727f59d8f52efea18b7be185f3d9eeda1ddef2601e878d402ee809436900c5",
                "md5": "52833c80a244266746b657fc9cdba047",
                "sha256": "d81454df7c0d75f7d33c14fd341122cf098d4393a8ad2bc898f539ac54d491ab"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "52833c80a244266746b657fc9cdba047",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 72774,
            "upload_time": "2025-02-05T22:20:41",
            "upload_time_iso_8601": "2025-02-05T22:20:41.552190Z",
            "url": "https://files.pythonhosted.org/packages/26/72/7f59d8f52efea18b7be185f3d9eeda1ddef2601e878d402ee809436900c5/uza-0.0.1.dev3-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ad35eb487138c8f46982e996c0d3c3d5b2fdaf8a0d9070ef92d67219a1f2f3c",
                "md5": "a5a2dd0ae284561346fbeb39bdf2725b",
                "sha256": "65a5a228046693456be063d1942918969fd1218d38003b3aa5cc4903a7153b04"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5a2dd0ae284561346fbeb39bdf2725b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 65977,
            "upload_time": "2025-02-05T22:20:42",
            "upload_time_iso_8601": "2025-02-05T22:20:42.916574Z",
            "url": "https://files.pythonhosted.org/packages/3a/d3/5eb487138c8f46982e996c0d3c3d5b2fdaf8a0d9070ef92d67219a1f2f3c/uza-0.0.1.dev3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf9c971b8087203082f1c9425e56c2256d0dc0d4ea4701c8db14bd718c6fb52e",
                "md5": "3af61f20501b387bd35a09321f84a288",
                "sha256": "bbd613d8d999caa22f9979162cb33977586f50129bd866d9fdca3928ab96016e"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "3af61f20501b387bd35a09321f84a288",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 63970,
            "upload_time": "2025-02-05T22:20:44",
            "upload_time_iso_8601": "2025-02-05T22:20:44.300254Z",
            "url": "https://files.pythonhosted.org/packages/cf/9c/971b8087203082f1c9425e56c2256d0dc0d4ea4701c8db14bd718c6fb52e/uza-0.0.1.dev3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17d0d3326b6bb767518c65c3e73ca02eb7732f4dba516a2e157c46a0117be88d",
                "md5": "33acc7b3e6ac729b5837eee9a6dd3428",
                "sha256": "d087f2cf707ad34e181fdd9272d6cbc851ed3a3bdeaa13294070ed19d9e7b992"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "33acc7b3e6ac729b5837eee9a6dd3428",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 65022,
            "upload_time": "2025-02-05T22:20:47",
            "upload_time_iso_8601": "2025-02-05T22:20:47.830613Z",
            "url": "https://files.pythonhosted.org/packages/17/d0/d3326b6bb767518c65c3e73ca02eb7732f4dba516a2e157c46a0117be88d/uza-0.0.1.dev3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "543efc8da8a4f51d7e0cf06fe9dd0bc23e46a8a6e5fb109780dbe13238e7c32e",
                "md5": "47ebf2ea3b8a6af02afd852a6f86c7f5",
                "sha256": "1f8738042ee07a43fea3445e71513a5ab9f3cdf6d1da1bb1ef3e6dc0e404f0f6"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "47ebf2ea3b8a6af02afd852a6f86c7f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 58573,
            "upload_time": "2025-02-05T22:20:49",
            "upload_time_iso_8601": "2025-02-05T22:20:49.233446Z",
            "url": "https://files.pythonhosted.org/packages/54/3e/fc8da8a4f51d7e0cf06fe9dd0bc23e46a8a6e5fb109780dbe13238e7c32e/uza-0.0.1.dev3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10e35dc5c04aedaea85661df1ac9b20bbf06a2ac0c0be5ca86c9efbb3dfedc8e",
                "md5": "498675c7365ead8999ff48c88dea1417",
                "sha256": "196aec38430b884745c749f29bc8529e467d070f42d693274444da182ccaaf36"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "498675c7365ead8999ff48c88dea1417",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 65170,
            "upload_time": "2025-02-05T22:20:50",
            "upload_time_iso_8601": "2025-02-05T22:20:50.643407Z",
            "url": "https://files.pythonhosted.org/packages/10/e3/5dc5c04aedaea85661df1ac9b20bbf06a2ac0c0be5ca86c9efbb3dfedc8e/uza-0.0.1.dev3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6fd86cb3f2e694b30f19fe14246355f3c5cdb3b288e13ace1025c7c1783298a5",
                "md5": "d79411195c205312fd192bf38c266c97",
                "sha256": "29578107dbd49f17184ef91a10e491d0ebf5a5e310ddffc8c7730a82703c9018"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d79411195c205312fd192bf38c266c97",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 71309,
            "upload_time": "2025-02-05T22:20:51",
            "upload_time_iso_8601": "2025-02-05T22:20:51.992794Z",
            "url": "https://files.pythonhosted.org/packages/6f/d8/6cb3f2e694b30f19fe14246355f3c5cdb3b288e13ace1025c7c1783298a5/uza-0.0.1.dev3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1e87a13b1dfc71405efe3c6cf80d597a7b4301e5120a1c684c44fc8a9e75733",
                "md5": "f2bfb8e44ff4be04f977e620bf323c72",
                "sha256": "07f01e76d296dbb0a3f905391391e073d80f36c63d6fcccb8277c249af05939f"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f2bfb8e44ff4be04f977e620bf323c72",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 72772,
            "upload_time": "2025-02-05T22:20:54",
            "upload_time_iso_8601": "2025-02-05T22:20:54.165465Z",
            "url": "https://files.pythonhosted.org/packages/f1/e8/7a13b1dfc71405efe3c6cf80d597a7b4301e5120a1c684c44fc8a9e75733/uza-0.0.1.dev3-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eccd6048111b546b8d28717ff80785de9d462ed2afd4167e8dbb06ebbe9942dc",
                "md5": "3bc37e1ad85edce8baeb9eceecaaa7ee",
                "sha256": "2c03899c4b6a39a402c7e489774bf745afdc6cbd62b47d92ed822a5c1ca54e80"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3bc37e1ad85edce8baeb9eceecaaa7ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 65977,
            "upload_time": "2025-02-05T22:20:55",
            "upload_time_iso_8601": "2025-02-05T22:20:55.447331Z",
            "url": "https://files.pythonhosted.org/packages/ec/cd/6048111b546b8d28717ff80785de9d462ed2afd4167e8dbb06ebbe9942dc/uza-0.0.1.dev3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "091309416c2d0c40e8b2290968742f023765ea40d9228403124dc4c268cd57d8",
                "md5": "c1f51579b3f0c9364bf257db7574271a",
                "sha256": "60eaf84f445706726333d967eaae9d061d1f74036e79838c9480e9b4977eeb64"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "c1f51579b3f0c9364bf257db7574271a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 63971,
            "upload_time": "2025-02-05T22:20:56",
            "upload_time_iso_8601": "2025-02-05T22:20:56.959171Z",
            "url": "https://files.pythonhosted.org/packages/09/13/09416c2d0c40e8b2290968742f023765ea40d9228403124dc4c268cd57d8/uza-0.0.1.dev3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bac3628bdc1a9598b9e180afb0862beea1a1db4431b4e330794e9f1b73fe720c",
                "md5": "eeeff57d33d405774b6c6e4ef6da823d",
                "sha256": "2ef786b9cb0862327ed4a672459e8040056ce3cd678422ac581f551374d7ce2e"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eeeff57d33d405774b6c6e4ef6da823d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 65024,
            "upload_time": "2025-02-05T22:20:58",
            "upload_time_iso_8601": "2025-02-05T22:20:58.219443Z",
            "url": "https://files.pythonhosted.org/packages/ba/c3/628bdc1a9598b9e180afb0862beea1a1db4431b4e330794e9f1b73fe720c/uza-0.0.1.dev3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d350244249f676ef983bbf149a0dfe93dd1ab1472a01a7368463aedc0f0d8297",
                "md5": "778a7db342f1379d725f9456c4aa756d",
                "sha256": "bded4a5b87a22e7b8cab8c26355f434384c83e525e8b04c606e0ea4f1aa3a981"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "778a7db342f1379d725f9456c4aa756d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 58573,
            "upload_time": "2025-02-05T22:21:01",
            "upload_time_iso_8601": "2025-02-05T22:21:01.579142Z",
            "url": "https://files.pythonhosted.org/packages/d3/50/244249f676ef983bbf149a0dfe93dd1ab1472a01a7368463aedc0f0d8297/uza-0.0.1.dev3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26b0115fc44a865903b2d68e07593d7d951ff49d19f0b8228315f1ca623e4539",
                "md5": "f54706a0efbc9d058d148bb9ac8332be",
                "sha256": "667daebe1f10ff4cd108df00b70d297792116f508f3c588d881d038083288e34"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f54706a0efbc9d058d148bb9ac8332be",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 65169,
            "upload_time": "2025-02-05T22:21:03",
            "upload_time_iso_8601": "2025-02-05T22:21:03.431577Z",
            "url": "https://files.pythonhosted.org/packages/26/b0/115fc44a865903b2d68e07593d7d951ff49d19f0b8228315f1ca623e4539/uza-0.0.1.dev3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e1bdcae44b779fd3223dd68fa12cafc5c891d427f53f777d4235173f2f6ed3a",
                "md5": "51e0c5dd1bf927fe2aeee7564051bffe",
                "sha256": "2f79a9f86078c0963482ab20dd7d600211d8bfe49aa73e5b03a0721ff3e66506"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "51e0c5dd1bf927fe2aeee7564051bffe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 71310,
            "upload_time": "2025-02-05T22:21:05",
            "upload_time_iso_8601": "2025-02-05T22:21:05.246486Z",
            "url": "https://files.pythonhosted.org/packages/7e/1b/dcae44b779fd3223dd68fa12cafc5c891d427f53f777d4235173f2f6ed3a/uza-0.0.1.dev3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be0c717c46da6c91b5f9dd7cc2e309ab726e45cc092750e95efed60c18423a0f",
                "md5": "ae956e909039d0c7afefc2b020832080",
                "sha256": "0455d86c8253934d05d98cb4f27265ef4b86cc8f3f5300c1cb10fd60e8ed87a5"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ae956e909039d0c7afefc2b020832080",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 72772,
            "upload_time": "2025-02-05T22:21:06",
            "upload_time_iso_8601": "2025-02-05T22:21:06.477927Z",
            "url": "https://files.pythonhosted.org/packages/be/0c/717c46da6c91b5f9dd7cc2e309ab726e45cc092750e95efed60c18423a0f/uza-0.0.1.dev3-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c60fa2522151f81232219c7e0945435d1070dea6a4a8dc375113919bbc34cf8",
                "md5": "f502b338e7020635b5ed5787b8e25733",
                "sha256": "168efff201ff86da2692ba2cc557e2e85ef88337e79bc31a7af45d98b8e6a216"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f502b338e7020635b5ed5787b8e25733",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 65977,
            "upload_time": "2025-02-05T22:21:10",
            "upload_time_iso_8601": "2025-02-05T22:21:10.399986Z",
            "url": "https://files.pythonhosted.org/packages/3c/60/fa2522151f81232219c7e0945435d1070dea6a4a8dc375113919bbc34cf8/uza-0.0.1.dev3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40b52568745552fea0a7952d3daa19d37d3eb01257d9c07ce5e730c6c68084b2",
                "md5": "35e9f49494aa242a23225017ec6952be",
                "sha256": "9ff341bc4fb58e5dffcb10d30f386b1d36973cf8a36f7a44464dcf87e39ccc5f"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "35e9f49494aa242a23225017ec6952be",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 63968,
            "upload_time": "2025-02-05T22:21:12",
            "upload_time_iso_8601": "2025-02-05T22:21:12.061889Z",
            "url": "https://files.pythonhosted.org/packages/40/b5/2568745552fea0a7952d3daa19d37d3eb01257d9c07ce5e730c6c68084b2/uza-0.0.1.dev3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "555afb71e40ec50f4ba49819c2a22a04b7be96b8d7e1e2185fe15c72525d4ef1",
                "md5": "997c0698025545ba7bd261dc634b027c",
                "sha256": "5173cff04f010e0562c1dcbfc644b252eb87584e02bfe24f77a58899deb032de"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "997c0698025545ba7bd261dc634b027c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 65023,
            "upload_time": "2025-02-05T22:21:13",
            "upload_time_iso_8601": "2025-02-05T22:21:13.961147Z",
            "url": "https://files.pythonhosted.org/packages/55/5a/fb71e40ec50f4ba49819c2a22a04b7be96b8d7e1e2185fe15c72525d4ef1/uza-0.0.1.dev3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e0958a70d0989f476be5941a2d31d2123fbb21a988f22b679e6727207d61ee0",
                "md5": "59cfbf85bb44a090992fbc8d08e2003f",
                "sha256": "2d6129ef44311c701578498bacd609d8e675658d74beca596fafef9ff89a8291"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "59cfbf85bb44a090992fbc8d08e2003f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 58572,
            "upload_time": "2025-02-05T22:21:15",
            "upload_time_iso_8601": "2025-02-05T22:21:15.379150Z",
            "url": "https://files.pythonhosted.org/packages/4e/09/58a70d0989f476be5941a2d31d2123fbb21a988f22b679e6727207d61ee0/uza-0.0.1.dev3-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4773ed742ec0fba05a906e750866b281eaa7d7acbda0757dab66e44f8f12b3d6",
                "md5": "44d6dcf58c05f6a5a1b5e4dcb7d1db3a",
                "sha256": "237f3e4375bfe81ceea5cb541a2304ba8775cb7ba8291e77dc47913b30462526"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44d6dcf58c05f6a5a1b5e4dcb7d1db3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 65169,
            "upload_time": "2025-02-05T22:21:16",
            "upload_time_iso_8601": "2025-02-05T22:21:16.610355Z",
            "url": "https://files.pythonhosted.org/packages/47/73/ed742ec0fba05a906e750866b281eaa7d7acbda0757dab66e44f8f12b3d6/uza-0.0.1.dev3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64eca4cbdb597f9597476f46c1199bea724f7281d4f227e7ca8e8bd8b6248f68",
                "md5": "a3c51c7e1ca7ca9d358adb5c71554601",
                "sha256": "e065d872df8135015a70c06c882cbfb650db62b3ee9436fab80d68b14d26c7b3"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a3c51c7e1ca7ca9d358adb5c71554601",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 71310,
            "upload_time": "2025-02-05T22:21:17",
            "upload_time_iso_8601": "2025-02-05T22:21:17.906272Z",
            "url": "https://files.pythonhosted.org/packages/64/ec/a4cbdb597f9597476f46c1199bea724f7281d4f227e7ca8e8bd8b6248f68/uza-0.0.1.dev3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05cc8edd82a94b83e97e3c6dba3ea57de96cccba4eb8f94169eaa62dd4de34eb",
                "md5": "d9bd5de0e33079c883c066ad3cd39a3f",
                "sha256": "91683905f8114f26e22f9fa852856fb0d2652ce9ca4e00e6aefcefa123fa2a40"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d9bd5de0e33079c883c066ad3cd39a3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 72772,
            "upload_time": "2025-02-05T22:21:19",
            "upload_time_iso_8601": "2025-02-05T22:21:19.326395Z",
            "url": "https://files.pythonhosted.org/packages/05/cc/8edd82a94b83e97e3c6dba3ea57de96cccba4eb8f94169eaa62dd4de34eb/uza-0.0.1.dev3-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eed5c8e11bb810fa813195c8cf60e8df49997752247b5f5ab9243f13fc02744b",
                "md5": "6e688d7d26b91542931bfd6a02472a8c",
                "sha256": "b02c11b481607bb72cb489d0bb9fa12f486ef5e23640caee0233d207abf874c3"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e688d7d26b91542931bfd6a02472a8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 65976,
            "upload_time": "2025-02-05T22:21:22",
            "upload_time_iso_8601": "2025-02-05T22:21:22.322994Z",
            "url": "https://files.pythonhosted.org/packages/ee/d5/c8e11bb810fa813195c8cf60e8df49997752247b5f5ab9243f13fc02744b/uza-0.0.1.dev3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b8a878376ddbebcaa35374591d60cb6e953aff589fa0039ef7413c7ca17a618",
                "md5": "da0b94228c0bed84fc618fa25ef8dc42",
                "sha256": "216ba712985f7c1751d2e5c0190cd3593c1b85cad42c4ef53b61a02f62702ff0"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "da0b94228c0bed84fc618fa25ef8dc42",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 63972,
            "upload_time": "2025-02-05T22:21:23",
            "upload_time_iso_8601": "2025-02-05T22:21:23.820781Z",
            "url": "https://files.pythonhosted.org/packages/8b/8a/878376ddbebcaa35374591d60cb6e953aff589fa0039ef7413c7ca17a618/uza-0.0.1.dev3-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aaeb06bfae50dbc395e0e518468355187b2f6440adaa4a2e8948ae37fbb77e93",
                "md5": "be6320d155bf072d2ca7efbef940d807",
                "sha256": "3a789581d9e755ab0b9643dfca96113b8c25baa5ff9123b1f03db5891d202bc5"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "be6320d155bf072d2ca7efbef940d807",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 65023,
            "upload_time": "2025-02-05T22:21:25",
            "upload_time_iso_8601": "2025-02-05T22:21:25.183957Z",
            "url": "https://files.pythonhosted.org/packages/aa/eb/06bfae50dbc395e0e518468355187b2f6440adaa4a2e8948ae37fbb77e93/uza-0.0.1.dev3-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0438c890441cbfa69cf7669fb0892aabcac268ae737d1edf683dd1449a87621d",
                "md5": "f97e022f69fc68607a70a722bb848980",
                "sha256": "618b593e021717dd4dd6c11e889d4877a6870a0161a4f2472eca03e011d0c70f"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f97e022f69fc68607a70a722bb848980",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 58580,
            "upload_time": "2025-02-05T22:21:26",
            "upload_time_iso_8601": "2025-02-05T22:21:26.545912Z",
            "url": "https://files.pythonhosted.org/packages/04/38/c890441cbfa69cf7669fb0892aabcac268ae737d1edf683dd1449a87621d/uza-0.0.1.dev3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70e1dca25af4f4245092a2eb24d669c047bc93aaba669132399345847d3f0fa2",
                "md5": "490e1bd07009b70b7589034b3f6b0edf",
                "sha256": "24cf408c2ec04a609b065014003fdf99d83d6629ccd245fd993e9bd472b88f8a"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "490e1bd07009b70b7589034b3f6b0edf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 65175,
            "upload_time": "2025-02-05T22:21:27",
            "upload_time_iso_8601": "2025-02-05T22:21:27.858095Z",
            "url": "https://files.pythonhosted.org/packages/70/e1/dca25af4f4245092a2eb24d669c047bc93aaba669132399345847d3f0fa2/uza-0.0.1.dev3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb4dbd8828c8e69fb30c291d20298633c7abc14d3a25d6da5e54bf7f53fc0831",
                "md5": "6c340dbbe8c400e0a94caed969edafe2",
                "sha256": "982f55e3e0d4d07a29326beab4263ff7877679a8d3a0224c0bf81ccde37486e6"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6c340dbbe8c400e0a94caed969edafe2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 71318,
            "upload_time": "2025-02-05T22:21:29",
            "upload_time_iso_8601": "2025-02-05T22:21:29.199835Z",
            "url": "https://files.pythonhosted.org/packages/eb/4d/bd8828c8e69fb30c291d20298633c7abc14d3a25d6da5e54bf7f53fc0831/uza-0.0.1.dev3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "243e0d1ddf3d8b0c72d55640d29ca93f7114736197f12c8ecda94269125ee069",
                "md5": "3a1f296dd3af728685ce3a729240f55e",
                "sha256": "e935c286d09b5a93bfa1f6f061942e29b04498a79a976152943071b8da5ee6c5"
            },
            "downloads": -1,
            "filename": "uza-0.0.1.dev3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3a1f296dd3af728685ce3a729240f55e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 65035,
            "upload_time": "2025-02-05T22:21:30",
            "upload_time_iso_8601": "2025-02-05T22:21:30.728320Z",
            "url": "https://files.pythonhosted.org/packages/24/3e/0d1ddf3d8b0c72d55640d29ca93f7114736197f12c8ecda94269125ee069/uza-0.0.1.dev3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-05 22:20:37",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "uza"
}
        
Elapsed time: 0.42489s