uuid-utils


Nameuuid-utils JSON
Version 0.7.0 PyPI version JSON
download
home_pageNone
SummaryDrop-in replacement for Python UUID in Rust
upload_time2024-05-03 10:22:15
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords rust uuid
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python UUID Utils

<p align="center">
<a href="https://pypi.org/project/uuid-utils/">
    <img src="https://badge.fury.io/py/uuid-utils.svg" alt="Package version">
</a>
<a href="https://pypi.org/project/uuid-utils" target="_blank">
    <img src="https://img.shields.io/pypi/pyversions/uuid-utils.svg?color=%2334D058" alt="Supported Python versions">
</a>
</p>

---

Python UUID implementation using Rust's UUID library.
This will make `uuid4` function around 10x faster.

This package can be a drop-in replacement to the standard library UUID
which implements existing UUID versions like V4 in Rust
and also adds draft UUID versions like V6.

Avaialble UUID versions:

- `uuid1` - Version 1 UUIDs using a timestamp and monotonic counter.
- `uuid3` - Version 3 UUIDs based on the MD5 hash of some data.
- `uuid4` - Version 4 UUIDs with random data.
- `uuid5` - Version 5 UUIDs based on the SHA1 hash of some data.
- `uuid6` - Version 6 UUIDs using a timestamp and monotonic counter.
- `uuid7` - Version 7 UUIDs using a Unix timestamp ordered by time.
- `uuid8` - Version 8 UUIDs using user-defined data.

<sup>Please note that UUID versions 6, 7 and 8 are still in draft RFC.</sup><br>

## Installation

```shell
$ pip install uuid-utils
```

## Example

```shell
>>> import uuid_utils as uuid

>>> # make a random UUID
>>> uuid.uuid4()
UUID('ffe95fcc-b818-4aca-a350-e0a35b9de6ec')

>>> # make a random UUID using a Unix timestamp which is time-ordered.
>>> uuid.uuid7()
UUID('018afa4a-0d21-7e6c-b857-012bc678552b')

>>> # make a UUID using a SHA-1 hash of a namespace UUID and a name
>>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')

>>> # make a UUID using an MD5 hash of a namespace UUID and a name
>>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')
```

## Compat module

In some cases you might need `UUID` instances to be returned
from the standrad-library `uuid`, not a custom `UUID` class.
In that case you can use the `uuid_utils.compat` which comes with a performance penalty
in comparison with the `uuid_utils` default behaviour, but still faster than the standard-library.

```py
>>> import uuid_utils.compat as uuid

>>> # make a random UUID
>>> uuid.uuid4()
UUID('ffe95fcc-b818-4aca-a350-e0a35b9de6ec')
```

## Benchmarks

|       Benchmark | Min     | Max     | Mean    | Min (+)         | Max (+)         | Mean (+)        |
|-----------------|---------|---------|---------|-----------------|-----------------|-----------------|
|         UUID V1 | 0.058   | 0.059   | 0.058   | 0.005 (12.0x)   | 0.005 (11.9x)   | 0.005 (12.0x)   |
|         UUID V3 | 0.063   | 0.064   | 0.063   | 0.008 (7.9x)    | 0.008 (8.1x)    | 0.008 (8.0x)    |
|         UUID V4 | 0.041   | 0.041   | 0.041   | 0.004 (11.1x)   | 0.004 (10.8x)   | 0.004 (10.9x)   |
|         UUID V5 | 0.064   | 0.066   | 0.065   | 0.008 (8.1x)    | 0.008 (8.1x)    | 0.008 (8.1x)    |
|   UUID from hex | 0.024   | 0.025   | 0.024   | 0.004 (6.7x)    | 0.004 (6.6x)    | 0.004 (6.6x)    |
| UUID from bytes | 0.024   | 0.025   | 0.024   | 0.004 (6.7x)    | 0.004 (6.6x)    | 0.004 (6.7x)    |
|   UUID from int | 0.024   | 0.025   | 0.024   | 0.004 (6.6x)    | 0.004 (6.7x)    | 0.004 (6.6x)    |
| UUID from fields | 0.028   | 0.028   | 0.028   | 0.009 (3.1x)    | 0.009 (3.1x)    | 0.009 (3.1x)    |

## How to develop locally

```shell
$ make build
$ make test
```

Or:

```shell
$ RUSTFLAGS="--cfg uuid_unstable" maturin develop --release
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "uuid-utils",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "rust, uuid",
    "author": null,
    "author_email": "Amin Alaee <me@aminalaee.dev>",
    "download_url": "https://files.pythonhosted.org/packages/d7/24/e0f878ec6563bee5132823c941a4b037c281678ae84b71c7a7ba7957f314/uuid_utils-0.7.0.tar.gz",
    "platform": null,
    "description": "# Python UUID Utils\n\n<p align=\"center\">\n<a href=\"https://pypi.org/project/uuid-utils/\">\n    <img src=\"https://badge.fury.io/py/uuid-utils.svg\" alt=\"Package version\">\n</a>\n<a href=\"https://pypi.org/project/uuid-utils\" target=\"_blank\">\n    <img src=\"https://img.shields.io/pypi/pyversions/uuid-utils.svg?color=%2334D058\" alt=\"Supported Python versions\">\n</a>\n</p>\n\n---\n\nPython UUID implementation using Rust's UUID library.\nThis will make `uuid4` function around 10x faster.\n\nThis package can be a drop-in replacement to the standard library UUID\nwhich implements existing UUID versions like V4 in Rust\nand also adds draft UUID versions like V6.\n\nAvaialble UUID versions:\n\n- `uuid1` - Version 1 UUIDs using a timestamp and monotonic counter.\n- `uuid3` - Version 3 UUIDs based on the MD5 hash of some data.\n- `uuid4` - Version 4 UUIDs with random data.\n- `uuid5` - Version 5 UUIDs based on the SHA1 hash of some data.\n- `uuid6` - Version 6 UUIDs using a timestamp and monotonic counter.\n- `uuid7` - Version 7 UUIDs using a Unix timestamp ordered by time.\n- `uuid8` - Version 8 UUIDs using user-defined data.\n\n<sup>Please note that UUID versions 6, 7 and 8 are still in draft RFC.</sup><br>\n\n## Installation\n\n```shell\n$ pip install uuid-utils\n```\n\n## Example\n\n```shell\n>>> import uuid_utils as uuid\n\n>>> # make a random UUID\n>>> uuid.uuid4()\nUUID('ffe95fcc-b818-4aca-a350-e0a35b9de6ec')\n\n>>> # make a random UUID using a Unix timestamp which is time-ordered.\n>>> uuid.uuid7()\nUUID('018afa4a-0d21-7e6c-b857-012bc678552b')\n\n>>> # make a UUID using a SHA-1 hash of a namespace UUID and a name\n>>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')\nUUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')\n\n>>> # make a UUID using an MD5 hash of a namespace UUID and a name\n>>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')\nUUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')\n```\n\n## Compat module\n\nIn some cases you might need `UUID` instances to be returned\nfrom the standrad-library `uuid`, not a custom `UUID` class.\nIn that case you can use the `uuid_utils.compat` which comes with a performance penalty\nin comparison with the `uuid_utils` default behaviour, but still faster than the standard-library.\n\n```py\n>>> import uuid_utils.compat as uuid\n\n>>> # make a random UUID\n>>> uuid.uuid4()\nUUID('ffe95fcc-b818-4aca-a350-e0a35b9de6ec')\n```\n\n## Benchmarks\n\n|       Benchmark | Min     | Max     | Mean    | Min (+)         | Max (+)         | Mean (+)        |\n|-----------------|---------|---------|---------|-----------------|-----------------|-----------------|\n|         UUID V1 | 0.058   | 0.059   | 0.058   | 0.005 (12.0x)   | 0.005 (11.9x)   | 0.005 (12.0x)   |\n|         UUID V3 | 0.063   | 0.064   | 0.063   | 0.008 (7.9x)    | 0.008 (8.1x)    | 0.008 (8.0x)    |\n|         UUID V4 | 0.041   | 0.041   | 0.041   | 0.004 (11.1x)   | 0.004 (10.8x)   | 0.004 (10.9x)   |\n|         UUID V5 | 0.064   | 0.066   | 0.065   | 0.008 (8.1x)    | 0.008 (8.1x)    | 0.008 (8.1x)    |\n|   UUID from hex | 0.024   | 0.025   | 0.024   | 0.004 (6.7x)    | 0.004 (6.6x)    | 0.004 (6.6x)    |\n| UUID from bytes | 0.024   | 0.025   | 0.024   | 0.004 (6.7x)    | 0.004 (6.6x)    | 0.004 (6.7x)    |\n|   UUID from int | 0.024   | 0.025   | 0.024   | 0.004 (6.6x)    | 0.004 (6.7x)    | 0.004 (6.6x)    |\n| UUID from fields | 0.028   | 0.028   | 0.028   | 0.009 (3.1x)    | 0.009 (3.1x)    | 0.009 (3.1x)    |\n\n## How to develop locally\n\n```shell\n$ make build\n$ make test\n```\n\nOr:\n\n```shell\n$ RUSTFLAGS=\"--cfg uuid_unstable\" maturin develop --release\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Drop-in replacement for Python UUID in Rust",
    "version": "0.7.0",
    "project_urls": {
        "Documentation": "https://github.com/aminalaee/uuid-utils",
        "Issues": "https://github.com/aminalaee/uuid-utils/issues",
        "Source": "https://github.com/aminalaee/uuid-utils"
    },
    "split_keywords": [
        "rust",
        " uuid"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0d91a0e58cfe17763ad01210d2c02342ca34d9cb87a1e1f4faab0ec2731fc64",
                "md5": "ef22643d943097b11265412f2db9e22e",
                "sha256": "1813869ffbf82ebe5fbe749cf0d5e580c605b0fd65d5e738e44439578280f993"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "ef22643d943097b11265412f2db9e22e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 559433,
            "upload_time": "2024-05-03T10:20:10",
            "upload_time_iso_8601": "2024-05-03T10:20:10.303454Z",
            "url": "https://files.pythonhosted.org/packages/d0/d9/1a0e58cfe17763ad01210d2c02342ca34d9cb87a1e1f4faab0ec2731fc64/uuid_utils-0.7.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49aac6ae59e47f88a55a93c7d653fb8234791258385ed585371f83def61b60c8",
                "md5": "24ee3824bb717d8517536a1d2480cf60",
                "sha256": "afb6d3cea6f8b1d9692a1c5d7a93aa6189f973509ea272f4c070399e88cea36b"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24ee3824bb717d8517536a1d2480cf60",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 284523,
            "upload_time": "2024-05-03T10:20:11",
            "upload_time_iso_8601": "2024-05-03T10:20:11.915138Z",
            "url": "https://files.pythonhosted.org/packages/49/aa/c6ae59e47f88a55a93c7d653fb8234791258385ed585371f83def61b60c8/uuid_utils-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e15a9cabbe3f9e2c476920704eba17b88efbe1d2164beab9d5684902c95449d",
                "md5": "476f16522446559af371b9bbab9709c1",
                "sha256": "38af087e1804774f563ff5f9f043022274dfce110b721ca272f89c0de4ee44e1"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "476f16522446559af371b9bbab9709c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1058754,
            "upload_time": "2024-05-03T10:20:13",
            "upload_time_iso_8601": "2024-05-03T10:20:13.300416Z",
            "url": "https://files.pythonhosted.org/packages/6e/15/a9cabbe3f9e2c476920704eba17b88efbe1d2164beab9d5684902c95449d/uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86a08377ded33533241c8f53b54b8ddb5071fe1989c2251722a82f68022890df",
                "md5": "fadbbeea2b420f291f94124bb9614308",
                "sha256": "183603176b65401492db51a16526360997c91e32bc1ffe20ee527337fc57f634"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fadbbeea2b420f291f94124bb9614308",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1074045,
            "upload_time": "2024-05-03T10:20:14",
            "upload_time_iso_8601": "2024-05-03T10:20:14.810134Z",
            "url": "https://files.pythonhosted.org/packages/86/a0/8377ded33533241c8f53b54b8ddb5071fe1989c2251722a82f68022890df/uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77384df7dc1d45299350ef2a188813253e5003b41026eec536bb870d3087895b",
                "md5": "d3fda78748642b93f5bdd43dae2af18c",
                "sha256": "cebc0e99853c6c12f42e509c27af6131ef36b29e6f381d53c6d81eb1bd21a5f4"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d3fda78748642b93f5bdd43dae2af18c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1094057,
            "upload_time": "2024-05-03T10:20:16",
            "upload_time_iso_8601": "2024-05-03T10:20:16.259464Z",
            "url": "https://files.pythonhosted.org/packages/77/38/4df7dc1d45299350ef2a188813253e5003b41026eec536bb870d3087895b/uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f53655c94df7dd54652e9b81c2da99fd0d42c2e3beca3853a190395b2107a51",
                "md5": "355c4ee06af0aeb09b7c29152fd7551c",
                "sha256": "49e0a42bd9c3825f10d38dcc49bafe5b6543b6c107e4b614e96abf8a7cd58a6f"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "355c4ee06af0aeb09b7c29152fd7551c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1222916,
            "upload_time": "2024-05-03T10:20:18",
            "upload_time_iso_8601": "2024-05-03T10:20:18.371474Z",
            "url": "https://files.pythonhosted.org/packages/0f/53/655c94df7dd54652e9b81c2da99fd0d42c2e3beca3853a190395b2107a51/uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c6cf46cf4c54c4f164402d5712512c73194f3abb78c08697bed35ce2077bb3e",
                "md5": "acfed9079fa6436a83fe32b311774080",
                "sha256": "5a0f978aa8a51ca05142e4e81767d67de08b35ce7db28bc2e600d0c317472013"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "acfed9079fa6436a83fe32b311774080",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1069272,
            "upload_time": "2024-05-03T10:20:19",
            "upload_time_iso_8601": "2024-05-03T10:20:19.835657Z",
            "url": "https://files.pythonhosted.org/packages/4c/6c/f46cf4c54c4f164402d5712512c73194f3abb78c08697bed35ce2077bb3e/uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ece989b211da5be958c3090acfb80521c81678dd9492517893d7f7f52a5703ea",
                "md5": "1cefb6e938fad0bcb9465db148da4f7c",
                "sha256": "c3d2d02868c73334e84d80a7ad60e6c7506c72c059508e9a38db453e4110a652"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1cefb6e938fad0bcb9465db148da4f7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1082066,
            "upload_time": "2024-05-03T10:20:21",
            "upload_time_iso_8601": "2024-05-03T10:20:21.360592Z",
            "url": "https://files.pythonhosted.org/packages/ec/e9/89b211da5be958c3090acfb80521c81678dd9492517893d7f7f52a5703ea/uuid_utils-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bac500d11ff80b2979f02bffa396380acec72f112b48da027611572cee9d7873",
                "md5": "72ea373e11b8b4a1d4d142c281b38e14",
                "sha256": "03f710c032d903f273c720dfc080b68fead1ed543de8ad53c4c8dde64c6edd56"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "72ea373e11b8b4a1d4d142c281b38e14",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1226308,
            "upload_time": "2024-05-03T10:20:23",
            "upload_time_iso_8601": "2024-05-03T10:20:23.461997Z",
            "url": "https://files.pythonhosted.org/packages/ba/c5/00d11ff80b2979f02bffa396380acec72f112b48da027611572cee9d7873/uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "227a5944840fa376678e1b4f95ac880c872fe7499eeb8eb850a0768b2e062074",
                "md5": "8baf14dfce7d121cbab90bd71394dc30",
                "sha256": "b60c49becd9ff3844fe6e0e87319df9c84dd65bb86c36ad3514981f64e7a737a"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8baf14dfce7d121cbab90bd71394dc30",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1255076,
            "upload_time": "2024-05-03T10:20:25",
            "upload_time_iso_8601": "2024-05-03T10:20:25.410113Z",
            "url": "https://files.pythonhosted.org/packages/22/7a/5944840fa376678e1b4f95ac880c872fe7499eeb8eb850a0768b2e062074/uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c989684df0e0af22510585a2ab355f9e80ef5f2295cae0b97cc0b32c1653607e",
                "md5": "dba55579dd505b933afa407eb5684bd2",
                "sha256": "c7ae618dbe27eb5c681a09bec4554d8da8264130a083657fcb80033bbf1c6114"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dba55579dd505b933afa407eb5684bd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1239218,
            "upload_time": "2024-05-03T10:20:26",
            "upload_time_iso_8601": "2024-05-03T10:20:26.819745Z",
            "url": "https://files.pythonhosted.org/packages/c9/89/684df0e0af22510585a2ab355f9e80ef5f2295cae0b97cc0b32c1653607e/uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71fcc81f5184c2eec8c97b23b660878c3550289fb6f8164d2cb2ea4276f9bdae",
                "md5": "795d4dab27c21c7b4b3bc2d232316aba",
                "sha256": "fb73e36a209c2b585e878748615c0410d2422908ad86fc12b5ae66fedd7e326d"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "795d4dab27c21c7b4b3bc2d232316aba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 168660,
            "upload_time": "2024-05-03T10:20:28",
            "upload_time_iso_8601": "2024-05-03T10:20:28.740151Z",
            "url": "https://files.pythonhosted.org/packages/71/fc/c81f5184c2eec8c97b23b660878c3550289fb6f8164d2cb2ea4276f9bdae/uuid_utils-0.7.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "beffc3ed976c421dd1b8a42ed4193e0db7a56b0f0d5dc19f23f5e1645fb3330e",
                "md5": "170b23d72a0595888b0af0c6ed9ded3f",
                "sha256": "8e30075e257184328356436a8a6b0e5a0c2b097c224a1e7f9d98a4c350ae5f21"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "170b23d72a0595888b0af0c6ed9ded3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 174443,
            "upload_time": "2024-05-03T10:20:29",
            "upload_time_iso_8601": "2024-05-03T10:20:29.791117Z",
            "url": "https://files.pythonhosted.org/packages/be/ff/c3ed976c421dd1b8a42ed4193e0db7a56b0f0d5dc19f23f5e1645fb3330e/uuid_utils-0.7.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e37e6f3ee6502fcd6cc8c3347989e8fa95089a1acd81092f7490a6d552dc9d5c",
                "md5": "dbed851282503b6ce8c0ac28404e2474",
                "sha256": "ca41e673b807405c0c5aa97ff8959b80884734b1eb55428c7285de245aa3e101"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "dbed851282503b6ce8c0ac28404e2474",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 559796,
            "upload_time": "2024-05-03T10:20:31",
            "upload_time_iso_8601": "2024-05-03T10:20:31.435103Z",
            "url": "https://files.pythonhosted.org/packages/e3/7e/6f3ee6502fcd6cc8c3347989e8fa95089a1acd81092f7490a6d552dc9d5c/uuid_utils-0.7.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "495d5c7ed368165af452c6b0b7e407f8010ca9b4cf5ff7f07018665940917e6e",
                "md5": "be7f6d8153e03f30698e4200db7da748",
                "sha256": "cac7e2cf5b40ef297a998fc3ede146f171f99b18210e1237f01002c7e3fa6b0b"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be7f6d8153e03f30698e4200db7da748",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 284658,
            "upload_time": "2024-05-03T10:20:32",
            "upload_time_iso_8601": "2024-05-03T10:20:32.775629Z",
            "url": "https://files.pythonhosted.org/packages/49/5d/5c7ed368165af452c6b0b7e407f8010ca9b4cf5ff7f07018665940917e6e/uuid_utils-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11da0e4ed0029e600ded1e1a071a5ecfd4f32ff69cd1c80cefb482ab7b73a431",
                "md5": "db3860fdac8d0fe7abb1a8594d86d853",
                "sha256": "9bad486bcb3b1bd1f6a6e02d9627c51b993305bd2efd3eb4acd0aff529cd7d43"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "db3860fdac8d0fe7abb1a8594d86d853",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1058290,
            "upload_time": "2024-05-03T10:20:34",
            "upload_time_iso_8601": "2024-05-03T10:20:34.125946Z",
            "url": "https://files.pythonhosted.org/packages/11/da/0e4ed0029e600ded1e1a071a5ecfd4f32ff69cd1c80cefb482ab7b73a431/uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69388a1f28eb5dcaa0237cc77f6ae9aeb0a2141c8f50e54e09fe4ae68fe835a2",
                "md5": "06182b612b234a2f0d263c48d2876483",
                "sha256": "bd9d769f85bd24a558e8d1aee93400811e3f734199acc5410617f67b1041e0f4"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "06182b612b234a2f0d263c48d2876483",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1073886,
            "upload_time": "2024-05-03T10:20:35",
            "upload_time_iso_8601": "2024-05-03T10:20:35.499466Z",
            "url": "https://files.pythonhosted.org/packages/69/38/8a1f28eb5dcaa0237cc77f6ae9aeb0a2141c8f50e54e09fe4ae68fe835a2/uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92443710f475925ca1d108baa868165875fe7920880ed3f04bf8b1360f71fd6f",
                "md5": "b3951703d035c5ff15421d0442875c5a",
                "sha256": "5c99930f6d51efd15b6c2feb73b386bffccfc82c535eb7d8229e4fb6467f5c6c"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b3951703d035c5ff15421d0442875c5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1094189,
            "upload_time": "2024-05-03T10:20:37",
            "upload_time_iso_8601": "2024-05-03T10:20:37.379463Z",
            "url": "https://files.pythonhosted.org/packages/92/44/3710f475925ca1d108baa868165875fe7920880ed3f04bf8b1360f71fd6f/uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03f691b8b8902f08a402f5fa35ad6250cddc98097c84128848237a3373e00481",
                "md5": "70d453681d8ac63f7901ae27648aebff",
                "sha256": "1c68ba81b63e23032beda93eeab084f76f141017a26cb895c65777cf3c6c3474"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "70d453681d8ac63f7901ae27648aebff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1221877,
            "upload_time": "2024-05-03T10:20:39",
            "upload_time_iso_8601": "2024-05-03T10:20:39.042506Z",
            "url": "https://files.pythonhosted.org/packages/03/f6/91b8b8902f08a402f5fa35ad6250cddc98097c84128848237a3373e00481/uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2e52500ae826fbad716534fd99da106292419041ef7fc5efe5b46dad2d660e1",
                "md5": "a5732d98f9ba267680e354782e5240de",
                "sha256": "bdaa67667584aba2096292607e2f2e4485df1d1fb2594b2390227cf18df057f0"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5732d98f9ba267680e354782e5240de",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1069709,
            "upload_time": "2024-05-03T10:20:41",
            "upload_time_iso_8601": "2024-05-03T10:20:41.042833Z",
            "url": "https://files.pythonhosted.org/packages/f2/e5/2500ae826fbad716534fd99da106292419041ef7fc5efe5b46dad2d660e1/uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "067f01c9f61a25b951a21905e567cc54085ac23b6bbeb48d1e7df2dd3e00db0b",
                "md5": "93f9b2fcc7c3cff6d1c03beae2cc108b",
                "sha256": "6506fedaacd814b50cb62745b058796612c0ddd818a35a70082ea76f8b484931"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "93f9b2fcc7c3cff6d1c03beae2cc108b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1082388,
            "upload_time": "2024-05-03T10:20:42",
            "upload_time_iso_8601": "2024-05-03T10:20:42.962385Z",
            "url": "https://files.pythonhosted.org/packages/06/7f/01c9f61a25b951a21905e567cc54085ac23b6bbeb48d1e7df2dd3e00db0b/uuid_utils-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "caa37b10a03013f65d00afa47119017ff0293537d75070e714b732b7d80a0070",
                "md5": "4ef5c6aa803ee35a218e58086439787a",
                "sha256": "eaa55deae8fd4e7ff30a31f1661e953d70705efa3b09d0fc33576a8eaa589910"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4ef5c6aa803ee35a218e58086439787a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1226045,
            "upload_time": "2024-05-03T10:20:44",
            "upload_time_iso_8601": "2024-05-03T10:20:44.502956Z",
            "url": "https://files.pythonhosted.org/packages/ca/a3/7b10a03013f65d00afa47119017ff0293537d75070e714b732b7d80a0070/uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2500b587d795036cf50920917308a67b0945f06cb9b33002b30e8b873dabf965",
                "md5": "17bf551bf7031823fb4db62188550b71",
                "sha256": "0d4e7cd2f45e9a3dd371abb8532c6fcbb9befa1551522336095b02369e9144a9"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "17bf551bf7031823fb4db62188550b71",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1254960,
            "upload_time": "2024-05-03T10:20:46",
            "upload_time_iso_8601": "2024-05-03T10:20:46.952087Z",
            "url": "https://files.pythonhosted.org/packages/25/00/b587d795036cf50920917308a67b0945f06cb9b33002b30e8b873dabf965/uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f92812df65a4900703461bfb839f37c88dc7dcb89a9b2a6a587baee35321f1ea",
                "md5": "c05b8a84ecedeffb3dfb27840e507e61",
                "sha256": "d6a35a2205318cff201e76cbc6ad428c58e4d9d9ce9c83fd600c5295538be60e"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c05b8a84ecedeffb3dfb27840e507e61",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1238979,
            "upload_time": "2024-05-03T10:20:48",
            "upload_time_iso_8601": "2024-05-03T10:20:48.288337Z",
            "url": "https://files.pythonhosted.org/packages/f9/28/12df65a4900703461bfb839f37c88dc7dcb89a9b2a6a587baee35321f1ea/uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b74b93d2c823d6803e276cec10d26a63d1964765a034d3104c861e13c113c332",
                "md5": "bfcd2c6cd9f9a6e7c93846bf9648ef62",
                "sha256": "a7c82f88158f0693cfbc769536d7c09a7cd3c58b22a1b2a041374db1ba03e2d3"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bfcd2c6cd9f9a6e7c93846bf9648ef62",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 168604,
            "upload_time": "2024-05-03T10:20:50",
            "upload_time_iso_8601": "2024-05-03T10:20:50.193005Z",
            "url": "https://files.pythonhosted.org/packages/b7/4b/93d2c823d6803e276cec10d26a63d1964765a034d3104c861e13c113c332/uuid_utils-0.7.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "178cea72d2443395e1175c4c8932a5aed6c98d8b1eeef195ae642aa036810c13",
                "md5": "67f9bf74d67b56c02335beff8b33035d",
                "sha256": "df8f82270295726d1f7d1e26026c29d33a2b40e6dcf8723cf7f5809909eaf6d6"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "67f9bf74d67b56c02335beff8b33035d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 174087,
            "upload_time": "2024-05-03T10:20:51",
            "upload_time_iso_8601": "2024-05-03T10:20:51.283483Z",
            "url": "https://files.pythonhosted.org/packages/17/8c/ea72d2443395e1175c4c8932a5aed6c98d8b1eeef195ae642aa036810c13/uuid_utils-0.7.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "641cf5e3405d2e2bfc3452aa1908f118d1209b85601b7d5a5dd470c8d7baf6da",
                "md5": "d4437545808c7fc86630b28e07497af5",
                "sha256": "53e5d6703f6a38aa1ba59cf8ac0486ac9a847e816e638cf9d6a2a4da4e9f6247"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "d4437545808c7fc86630b28e07497af5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 557323,
            "upload_time": "2024-05-03T10:20:52",
            "upload_time_iso_8601": "2024-05-03T10:20:52.992576Z",
            "url": "https://files.pythonhosted.org/packages/64/1c/f5e3405d2e2bfc3452aa1908f118d1209b85601b7d5a5dd470c8d7baf6da/uuid_utils-0.7.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e3548d5d33a6c90e17f66f8491738ff1684c2a7edb7d59686ed9644f50bea5b",
                "md5": "0d1a215eba8107022c835b67dc3e6dad",
                "sha256": "c29183a8baedb39fc89e3d98ed2427d49e97ff3680f6832bffe73568d594970d"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d1a215eba8107022c835b67dc3e6dad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 283042,
            "upload_time": "2024-05-03T10:20:54",
            "upload_time_iso_8601": "2024-05-03T10:20:54.277654Z",
            "url": "https://files.pythonhosted.org/packages/1e/35/48d5d33a6c90e17f66f8491738ff1684c2a7edb7d59686ed9644f50bea5b/uuid_utils-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2fa5e8fa7bb93019d45829e985f3e2bbf8e99fba314e2646c6ceef272f06452",
                "md5": "63839cca4d2522adb0217621bae608af",
                "sha256": "253fd6e8962008484e02fd4ff4a77ffbddd3867c0c3c24a6919eb4fefc3a2297"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "63839cca4d2522adb0217621bae608af",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1058008,
            "upload_time": "2024-05-03T10:20:55",
            "upload_time_iso_8601": "2024-05-03T10:20:55.425556Z",
            "url": "https://files.pythonhosted.org/packages/f2/fa/5e8fa7bb93019d45829e985f3e2bbf8e99fba314e2646c6ceef272f06452/uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3782f1cab3abebff875d98226305896de25532c52be6bc6600c72dc40603055",
                "md5": "b57b3d0e90ca5e1dffcd2f91406ef90a",
                "sha256": "de53537159212608eb15d4948d0e0098d2fa2b30d453f93d83fe737f0fd7188b"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b57b3d0e90ca5e1dffcd2f91406ef90a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1073873,
            "upload_time": "2024-05-03T10:20:57",
            "upload_time_iso_8601": "2024-05-03T10:20:57.345570Z",
            "url": "https://files.pythonhosted.org/packages/b3/78/2f1cab3abebff875d98226305896de25532c52be6bc6600c72dc40603055/uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39b6ed1be081062f5c46aa03aeb7521ac4f27c3cc51714b6402193cb1c34eaad",
                "md5": "606a1208c6fd38b4b93e819354b30cfe",
                "sha256": "116c4b2ff774ce552324b196a3222302a2e78479a301fdb11c2aa1d294ab0f4d"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "606a1208c6fd38b4b93e819354b30cfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1092286,
            "upload_time": "2024-05-03T10:20:58",
            "upload_time_iso_8601": "2024-05-03T10:20:58.667460Z",
            "url": "https://files.pythonhosted.org/packages/39/b6/ed1be081062f5c46aa03aeb7521ac4f27c3cc51714b6402193cb1c34eaad/uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c35facf2cd3243cf4db61217ee9efd8c7deac1c16df8d15a0a4a5d74f5c898c",
                "md5": "b63f4dc91579e8a2933c35cebbeecb29",
                "sha256": "2eafb4fe02270e22a3bdb03c2107604cf68589a965667cabb71789beed318497"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b63f4dc91579e8a2933c35cebbeecb29",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1217192,
            "upload_time": "2024-05-03T10:21:00",
            "upload_time_iso_8601": "2024-05-03T10:21:00.559573Z",
            "url": "https://files.pythonhosted.org/packages/2c/35/facf2cd3243cf4db61217ee9efd8c7deac1c16df8d15a0a4a5d74f5c898c/uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d367dbe4ff6a95dcdb4155f311321dc263ff970eb3afb43e021ec672ff46e96",
                "md5": "af3988b53b5b0db58d5e8b5a1a69dded",
                "sha256": "f6ab7a012a1514e498f3f537852257ad2ec9402d1cc165865108dc6d9496bbd4"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af3988b53b5b0db58d5e8b5a1a69dded",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1068641,
            "upload_time": "2024-05-03T10:21:02",
            "upload_time_iso_8601": "2024-05-03T10:21:02.307011Z",
            "url": "https://files.pythonhosted.org/packages/8d/36/7dbe4ff6a95dcdb4155f311321dc263ff970eb3afb43e021ec672ff46e96/uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "232ee32ef6c6533c4196d2b28588afb4738a56b47daba2b68727f7b7735c9deb",
                "md5": "3391a53316692eb0a25029180614609c",
                "sha256": "08d58f7de04f3c43a4da05eece58002f4028a7275775ad5013e010abd51d7238"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3391a53316692eb0a25029180614609c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1081412,
            "upload_time": "2024-05-03T10:21:04",
            "upload_time_iso_8601": "2024-05-03T10:21:04.191847Z",
            "url": "https://files.pythonhosted.org/packages/23/2e/e32ef6c6533c4196d2b28588afb4738a56b47daba2b68727f7b7735c9deb/uuid_utils-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b1a62b730ce14a6c763e81b2e32a1293079e0b120b4bcc8fbce694af5fef38f",
                "md5": "b1fbef57308160f81941d6718386984a",
                "sha256": "7e349d43a969f696dbc7acd002b64952b71674eaf948043a4c6dd1ab65d7c462"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b1fbef57308160f81941d6718386984a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1226009,
            "upload_time": "2024-05-03T10:21:06",
            "upload_time_iso_8601": "2024-05-03T10:21:06.193434Z",
            "url": "https://files.pythonhosted.org/packages/8b/1a/62b730ce14a6c763e81b2e32a1293079e0b120b4bcc8fbce694af5fef38f/uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc0fc1678e26da30d8f05d41d5b682a215a21adf89a549f81308210a10c6d510",
                "md5": "3d3cdff68cc441a093e8710f53b1dff0",
                "sha256": "53f4c96e7fd1dab33dd56a885d9cffb5aaf21a9064115743e2cee1ff03cb359b"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3d3cdff68cc441a093e8710f53b1dff0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1254035,
            "upload_time": "2024-05-03T10:21:07",
            "upload_time_iso_8601": "2024-05-03T10:21:07.590999Z",
            "url": "https://files.pythonhosted.org/packages/bc/0f/c1678e26da30d8f05d41d5b682a215a21adf89a549f81308210a10c6d510/uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f82ea6e27f14da46f1eb824f3be8accd32822efb36c857509ec0ff3b1e76f86e",
                "md5": "6b7530f1c265bed69c16993de7790404",
                "sha256": "c145629c4e48cda275310955632a8231c031f5e9b2eb93b9ab8a081dc6ab6681"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b7530f1c265bed69c16993de7790404",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1239373,
            "upload_time": "2024-05-03T10:21:09",
            "upload_time_iso_8601": "2024-05-03T10:21:09.187464Z",
            "url": "https://files.pythonhosted.org/packages/f8/2e/a6e27f14da46f1eb824f3be8accd32822efb36c857509ec0ff3b1e76f86e/uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0650d016e2b9ee27976a341ee8b6eb65870b23131d7617c1de143f8e38a52b02",
                "md5": "d940b74f69b16a41c5f2902873d29ab1",
                "sha256": "2ca368440148049475ff94f62d5011c34cd7954fe36247698fc05658d04ad9a1"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d940b74f69b16a41c5f2902873d29ab1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 173361,
            "upload_time": "2024-05-03T10:21:11",
            "upload_time_iso_8601": "2024-05-03T10:21:11.052964Z",
            "url": "https://files.pythonhosted.org/packages/06/50/d016e2b9ee27976a341ee8b6eb65870b23131d7617c1de143f8e38a52b02/uuid_utils-0.7.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60902dea64d3173e1d1b383a4225cbb595f0e7774a7f2b417660e8600a3306f0",
                "md5": "47836b75582ac0cdfe446a2a3468319f",
                "sha256": "48ed8e59c6fdcc8f825e9fa58afc7f98ba37f744a401ff28a47e7042a761b373"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "47836b75582ac0cdfe446a2a3468319f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 561132,
            "upload_time": "2024-05-03T10:21:12",
            "upload_time_iso_8601": "2024-05-03T10:21:12.810049Z",
            "url": "https://files.pythonhosted.org/packages/60/90/2dea64d3173e1d1b383a4225cbb595f0e7774a7f2b417660e8600a3306f0/uuid_utils-0.7.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1e342d2b0fc08bdb5d5cbcd2109c85d00527de1781a6a259a4a3770bbc2a9d3",
                "md5": "7d9ba102caaed646e508c7e643caebef",
                "sha256": "bb2777eb2837fc88aceb09addb45bfc7bc8dd0058d19627867b459dac3101a4b"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d9ba102caaed646e508c7e643caebef",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 285263,
            "upload_time": "2024-05-03T10:21:14",
            "upload_time_iso_8601": "2024-05-03T10:21:14.091315Z",
            "url": "https://files.pythonhosted.org/packages/c1/e3/42d2b0fc08bdb5d5cbcd2109c85d00527de1781a6a259a4a3770bbc2a9d3/uuid_utils-0.7.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcf183db83ad363cdf8f32587600ec6d35995936d9ebda5939e32090b50088dc",
                "md5": "4ce7e3847223322734614f600a080f90",
                "sha256": "070254d2435e9f187e0e8c0626fc6ed108d308cdec669c6d1493dd117bfbedd1"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4ce7e3847223322734614f600a080f90",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1059405,
            "upload_time": "2024-05-03T10:21:15",
            "upload_time_iso_8601": "2024-05-03T10:21:15.251070Z",
            "url": "https://files.pythonhosted.org/packages/bc/f1/83db83ad363cdf8f32587600ec6d35995936d9ebda5939e32090b50088dc/uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72cc921258f5e4dc3864a61e76c80703ca355593981efcb8e8305ff5548dda94",
                "md5": "2be29e2f5d27e3587fa020639355fe65",
                "sha256": "424abbbf7e8bdfe78ab552d838efeb9fd033cfe2208f00aadee2704169a1ebad"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2be29e2f5d27e3587fa020639355fe65",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1075050,
            "upload_time": "2024-05-03T10:21:16",
            "upload_time_iso_8601": "2024-05-03T10:21:16.567016Z",
            "url": "https://files.pythonhosted.org/packages/72/cc/921258f5e4dc3864a61e76c80703ca355593981efcb8e8305ff5548dda94/uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "050ecc86bb00756f55a0f2831f1b07de56487c8e52c992a182ead7c01b46f0f4",
                "md5": "7d5851105e8d341224816c3d3462f893",
                "sha256": "884a72b5f87f7534b685382221d872058bb743294cdb0f2215056b6cc85350fb"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7d5851105e8d341224816c3d3462f893",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1094803,
            "upload_time": "2024-05-03T10:21:17",
            "upload_time_iso_8601": "2024-05-03T10:21:17.839423Z",
            "url": "https://files.pythonhosted.org/packages/05/0e/cc86bb00756f55a0f2831f1b07de56487c8e52c992a182ead7c01b46f0f4/uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25b15d62157cbcffffc31ca94196271db1c19859a368374daf86a60c8e0dd613",
                "md5": "101433a4a9a00ba40eba80fc160344e0",
                "sha256": "ab1509e21c74feb68b4a3e309bde8c64a8fce2e4552b79cb14058d6bc17a6129"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "101433a4a9a00ba40eba80fc160344e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1223434,
            "upload_time": "2024-05-03T10:21:19",
            "upload_time_iso_8601": "2024-05-03T10:21:19.436099Z",
            "url": "https://files.pythonhosted.org/packages/25/b1/5d62157cbcffffc31ca94196271db1c19859a368374daf86a60c8e0dd613/uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74ec30ddd5b9a2a0a9986487c11fc671f8df383e4007c07a62aaad02c6c30c43",
                "md5": "7af2787695262cc788172b5cfe98eff1",
                "sha256": "7e6d70efc5e3449f0be3184a6925d0feb29fe40bdcd24ee2611a9021ee9b2580"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7af2787695262cc788172b5cfe98eff1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1070038,
            "upload_time": "2024-05-03T10:21:21",
            "upload_time_iso_8601": "2024-05-03T10:21:21.427464Z",
            "url": "https://files.pythonhosted.org/packages/74/ec/30ddd5b9a2a0a9986487c11fc671f8df383e4007c07a62aaad02c6c30c43/uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c6870573afa54dbbff9d8917d533e080616c3f1618cc57deefe278bdf73c328",
                "md5": "23a145c0c43928bc49395d7b7ccb81f1",
                "sha256": "411e29b3a2de713c4a3f3edc653599fb17ef3f38b6a788fecef62c3f229b7b0e"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "23a145c0c43928bc49395d7b7ccb81f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1083039,
            "upload_time": "2024-05-03T10:21:22",
            "upload_time_iso_8601": "2024-05-03T10:21:22.771826Z",
            "url": "https://files.pythonhosted.org/packages/6c/68/70573afa54dbbff9d8917d533e080616c3f1618cc57deefe278bdf73c328/uuid_utils-0.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4eeb57cecdb9277fa02002767b43d752cb3852a3bb1f937202f61819b3d5ab0f",
                "md5": "eb253a9b4eec94f98d52b9168f97e005",
                "sha256": "3bf10bd5a898d72f50183718ca18bd61b8830c9134469b4d7b9f73f176f06c9f"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb253a9b4eec94f98d52b9168f97e005",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1227084,
            "upload_time": "2024-05-03T10:21:24",
            "upload_time_iso_8601": "2024-05-03T10:21:24.094338Z",
            "url": "https://files.pythonhosted.org/packages/4e/eb/57cecdb9277fa02002767b43d752cb3852a3bb1f937202f61819b3d5ab0f/uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95855feca2f84ddda43d82f6cb4c2d57642c7565bee8b52d94665be18e3c6c06",
                "md5": "c50962515eb94479269f39920f3f095f",
                "sha256": "247af7258004f497ec927fcf463914df5447eb691d7e9c23528280c471d6e830"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c50962515eb94479269f39920f3f095f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1255727,
            "upload_time": "2024-05-03T10:21:25",
            "upload_time_iso_8601": "2024-05-03T10:21:25.510239Z",
            "url": "https://files.pythonhosted.org/packages/95/85/5feca2f84ddda43d82f6cb4c2d57642c7565bee8b52d94665be18e3c6c06/uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07e553462c93784ae91c5201571adc3bcd79842b68d63d72df61ce64e6970eb3",
                "md5": "ec7df97a3aa43fa1ab4a185b5cec0ad2",
                "sha256": "01f7c73860b3cef024f9f57515dae5d52a554c3d2480d8410174ec5b609e20f5"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec7df97a3aa43fa1ab4a185b5cec0ad2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1239926,
            "upload_time": "2024-05-03T10:21:27",
            "upload_time_iso_8601": "2024-05-03T10:21:27.733636Z",
            "url": "https://files.pythonhosted.org/packages/07/e5/53462c93784ae91c5201571adc3bcd79842b68d63d72df61ce64e6970eb3/uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e55e67522bcf3f51447abca0099be938dbe8c8d401ce1fe7c6e17c7aecb1625e",
                "md5": "dfe974346df5238d0b14c95618ac5056",
                "sha256": "d90d432c85bb2d9b3d67c8483b1134cf4363a39fa3273b8f05dcfde2bdddfc5d"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "dfe974346df5238d0b14c95618ac5056",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 169600,
            "upload_time": "2024-05-03T10:21:28",
            "upload_time_iso_8601": "2024-05-03T10:21:28.947834Z",
            "url": "https://files.pythonhosted.org/packages/e5/5e/67522bcf3f51447abca0099be938dbe8c8d401ce1fe7c6e17c7aecb1625e/uuid_utils-0.7.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd7ff5c0de497fdf67a7d7490f9a8991035806d6f1339adb1c07ffd6e24aa591",
                "md5": "0335b499266e009683100c6f327cc7e2",
                "sha256": "d31ebe0e6d5d1210da259de4d04ee31dfd5407296302bc2dfcca941e3e8f7bee"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0335b499266e009683100c6f327cc7e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 174381,
            "upload_time": "2024-05-03T10:21:30",
            "upload_time_iso_8601": "2024-05-03T10:21:30.222951Z",
            "url": "https://files.pythonhosted.org/packages/cd/7f/f5c0de497fdf67a7d7490f9a8991035806d6f1339adb1c07ffd6e24aa591/uuid_utils-0.7.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b066dfd28668134993b2bb8c23d6c5f522b5da87b2f15a08f5d18c66690689f",
                "md5": "0fb6a90f0511ca639c40788968161a62",
                "sha256": "076fe5f6e5295a5d47b240ece6047d25ce15e8a114f60acc51b4025c3b973ed9"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "0fb6a90f0511ca639c40788968161a62",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 560112,
            "upload_time": "2024-05-03T10:21:31",
            "upload_time_iso_8601": "2024-05-03T10:21:31.295462Z",
            "url": "https://files.pythonhosted.org/packages/3b/06/6dfd28668134993b2bb8c23d6c5f522b5da87b2f15a08f5d18c66690689f/uuid_utils-0.7.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d890c35c37a57752a734441ca24523b93eaa30afde7af29907943cc27733a7bb",
                "md5": "51ef5a8458eb68819100e177c37b1484",
                "sha256": "997f4d4f505391b69373c852662b5fe0af8c17b71fe401fea7687261464b9aa5"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51ef5a8458eb68819100e177c37b1484",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 284939,
            "upload_time": "2024-05-03T10:21:32",
            "upload_time_iso_8601": "2024-05-03T10:21:32.703844Z",
            "url": "https://files.pythonhosted.org/packages/d8/90/c35c37a57752a734441ca24523b93eaa30afde7af29907943cc27733a7bb/uuid_utils-0.7.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce8e9648e7882b3c6765039e7b6bce8a940cebc8b1cc4ace6441df96172b9eab",
                "md5": "ee61a63b23254d4f52b960fec601ce14",
                "sha256": "59fc7ce3dddb5694f6ecd427d557a342f44075cdaf836cd99033fd0cc500e592"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ee61a63b23254d4f52b960fec601ce14",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1058426,
            "upload_time": "2024-05-03T10:21:34",
            "upload_time_iso_8601": "2024-05-03T10:21:34.179723Z",
            "url": "https://files.pythonhosted.org/packages/ce/8e/9648e7882b3c6765039e7b6bce8a940cebc8b1cc4ace6441df96172b9eab/uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4796721f2c9fdd0d5b7f7a5404cffd88b78b6c7bf8e76be2d65b60e05ef7d53c",
                "md5": "77e7ec25cb6683cf2254e71633745bbd",
                "sha256": "463b98c24c5f6f4d0b46174c1068c19007fe6414c38fbd58d5cb6c8d29cdd1ef"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "77e7ec25cb6683cf2254e71633745bbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1075081,
            "upload_time": "2024-05-03T10:21:35",
            "upload_time_iso_8601": "2024-05-03T10:21:35.571243Z",
            "url": "https://files.pythonhosted.org/packages/47/96/721f2c9fdd0d5b7f7a5404cffd88b78b6c7bf8e76be2d65b60e05ef7d53c/uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "871289f08be3ce25d81e7c47816dbb92bef6862182ec55706d1ca85765ad3873",
                "md5": "9145af292779166b7c3e39919ec06113",
                "sha256": "65c5d33fd056517d0ab1624168359371b012cc6e3a0fd6029d212d3973032e90"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9145af292779166b7c3e39919ec06113",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1094128,
            "upload_time": "2024-05-03T10:21:37",
            "upload_time_iso_8601": "2024-05-03T10:21:37.081697Z",
            "url": "https://files.pythonhosted.org/packages/87/12/89f08be3ce25d81e7c47816dbb92bef6862182ec55706d1ca85765ad3873/uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37ecf2cba0874bb88b8b6719af885ea2f704f82907d295268ecb02a556f19012",
                "md5": "699140cdbc3af4b685253f2b12c3a915",
                "sha256": "da47c5c4348a5f88749ac8fd54715bdfa18c1317ebf709121721e9b5fb338c66"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "699140cdbc3af4b685253f2b12c3a915",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1223221,
            "upload_time": "2024-05-03T10:21:38",
            "upload_time_iso_8601": "2024-05-03T10:21:38.633984Z",
            "url": "https://files.pythonhosted.org/packages/37/ec/f2cba0874bb88b8b6719af885ea2f704f82907d295268ecb02a556f19012/uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5628ec83b4e96bae5d915b64cc80d51776b4c5742b4b7d3eb1e4910f654144f",
                "md5": "8f3e872f1973741ec78e85091bf15ea4",
                "sha256": "04f39fd90656770422cc7ec46467c2eb758e19d70c5844770bd67834ebae40ea"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f3e872f1973741ec78e85091bf15ea4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1069460,
            "upload_time": "2024-05-03T10:21:40",
            "upload_time_iso_8601": "2024-05-03T10:21:40.213247Z",
            "url": "https://files.pythonhosted.org/packages/c5/62/8ec83b4e96bae5d915b64cc80d51776b4c5742b4b7d3eb1e4910f654144f/uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d66638a07e7e82d6178d516412f02d7c647d5e8f32819a8e0fff50109a1fc917",
                "md5": "0078a993baf7f11eda2b3ee21af7b2b6",
                "sha256": "a5817e38d497ae643c68044c5c84153fa47557df1f8c1661c17bd1e26bda1058"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0078a993baf7f11eda2b3ee21af7b2b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1083459,
            "upload_time": "2024-05-03T10:21:41",
            "upload_time_iso_8601": "2024-05-03T10:21:41.675485Z",
            "url": "https://files.pythonhosted.org/packages/d6/66/38a07e7e82d6178d516412f02d7c647d5e8f32819a8e0fff50109a1fc917/uuid_utils-0.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "995e86682b3b1c12cf9669fdd7362653b2677a80f3f915dfe5f6e622c64b2ea2",
                "md5": "4fbf8af857de0e4d7bb82afd5c77fec6",
                "sha256": "407c15bbde425bc4df829771ef601260eda8617ac5adc6f1eb924d916674c34f"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4fbf8af857de0e4d7bb82afd5c77fec6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1227307,
            "upload_time": "2024-05-03T10:21:42",
            "upload_time_iso_8601": "2024-05-03T10:21:42.968037Z",
            "url": "https://files.pythonhosted.org/packages/99/5e/86682b3b1c12cf9669fdd7362653b2677a80f3f915dfe5f6e622c64b2ea2/uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8dd37e25bd732f5313c9f742c71035b5207b48ea06c4770880d2ec36a62411a9",
                "md5": "1877a38aa32a668ff56f854841777ae2",
                "sha256": "d4ac00e7f3bbb578e20fadf81468f28b63d1b29930192d8285e9d01b2f75f270"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1877a38aa32a668ff56f854841777ae2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1255799,
            "upload_time": "2024-05-03T10:21:45",
            "upload_time_iso_8601": "2024-05-03T10:21:45.028291Z",
            "url": "https://files.pythonhosted.org/packages/8d/d3/7e25bd732f5313c9f742c71035b5207b48ea06c4770880d2ec36a62411a9/uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c63b9c92fbe99692b5cf6f94d87b85dde6eb8a8c072df9861e71169d6cc260d",
                "md5": "12a306944dbe2e09a625a7d323722200",
                "sha256": "6d937d37b696a2e3346171367a6ecf69519af4f2a5325e8e7f9a7cfb61597387"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12a306944dbe2e09a625a7d323722200",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1240131,
            "upload_time": "2024-05-03T10:21:46",
            "upload_time_iso_8601": "2024-05-03T10:21:46.401631Z",
            "url": "https://files.pythonhosted.org/packages/3c/63/b9c92fbe99692b5cf6f94d87b85dde6eb8a8c072df9861e71169d6cc260d/uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8bd20750c443a5951e489405499609b42b28978e291bbbb2d63233f11949737f",
                "md5": "f5d0f6ab337674d07b5fbcc8da7aedcc",
                "sha256": "a4fd826bc2c260716b53db90b2e4c8a0f752aae053fbfbd1860e6e450bcf6ae9"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f5d0f6ab337674d07b5fbcc8da7aedcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 169276,
            "upload_time": "2024-05-03T10:21:47",
            "upload_time_iso_8601": "2024-05-03T10:21:47.824668Z",
            "url": "https://files.pythonhosted.org/packages/8b/d2/0750c443a5951e489405499609b42b28978e291bbbb2d63233f11949737f/uuid_utils-0.7.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94c85098f22e3871cd26ac96b67301e05975cf9a7d22faddf0d7249c0c4a263c",
                "md5": "c12bc18172c1a6b3bb9b1043d33bddbe",
                "sha256": "c1aa084a1b4842c49526ed1189122a96a8cdd73f66ef4219956279044bf6721f"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c12bc18172c1a6b3bb9b1043d33bddbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 174309,
            "upload_time": "2024-05-03T10:21:49",
            "upload_time_iso_8601": "2024-05-03T10:21:49.186324Z",
            "url": "https://files.pythonhosted.org/packages/94/c8/5098f22e3871cd26ac96b67301e05975cf9a7d22faddf0d7249c0c4a263c/uuid_utils-0.7.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83071ce4e486df4dda24352824221b7cef8fe60fb44b383837121bfe4efecb4e",
                "md5": "e73d2a68733cac8dbaaeb0564362d702",
                "sha256": "15eb3621d24fb6aab7f8e7b315356171795ca0f226ba9c31490fb9c08712c201"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp38-pypy38_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "e73d2a68733cac8dbaaeb0564362d702",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 561800,
            "upload_time": "2024-05-03T10:21:50",
            "upload_time_iso_8601": "2024-05-03T10:21:50.506693Z",
            "url": "https://files.pythonhosted.org/packages/83/07/1ce4e486df4dda24352824221b7cef8fe60fb44b383837121bfe4efecb4e/uuid_utils-0.7.0-pp38-pypy38_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd52e621bceb39e479dcc355117e6743135ef102191ceb7097e01da151b94f11",
                "md5": "ccf42b42e681b3de3b8658763e7501e2",
                "sha256": "bd0dac47317dcdefafe493428237019582ba8adb91c3ec80e033ee631c173f6d"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ccf42b42e681b3de3b8658763e7501e2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 285553,
            "upload_time": "2024-05-03T10:21:51",
            "upload_time_iso_8601": "2024-05-03T10:21:51.714203Z",
            "url": "https://files.pythonhosted.org/packages/bd/52/e621bceb39e479dcc355117e6743135ef102191ceb7097e01da151b94f11/uuid_utils-0.7.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "498a5b3c4a52d4b3e194c7cd2b4191b7d5697c1bfaee1c660d30cbe58f87e4ae",
                "md5": "97fe0c12a3d8929f785146717e369439",
                "sha256": "a7b555e485f17ab1ab0cb963ff48c6404b93dd491aef7f52a8ae8c52f7f51841"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "97fe0c12a3d8929f785146717e369439",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1059837,
            "upload_time": "2024-05-03T10:21:52",
            "upload_time_iso_8601": "2024-05-03T10:21:52.964855Z",
            "url": "https://files.pythonhosted.org/packages/49/8a/5b3c4a52d4b3e194c7cd2b4191b7d5697c1bfaee1c660d30cbe58f87e4ae/uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c901f4dca0f88db981a5abf6f587ebf81166b42cc2d134048618153382118b5",
                "md5": "282f51ce638b0155e85748d99b1b5e23",
                "sha256": "e66bddd9a469645ede16f0abde5db4dd1a75bc9628ab0b68cad0b848de8494aa"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "282f51ce638b0155e85748d99b1b5e23",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1076092,
            "upload_time": "2024-05-03T10:21:54",
            "upload_time_iso_8601": "2024-05-03T10:21:54.287701Z",
            "url": "https://files.pythonhosted.org/packages/6c/90/1f4dca0f88db981a5abf6f587ebf81166b42cc2d134048618153382118b5/uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14ea7ce0378340ba7eadf5abc1c4f97e7e6c271ab517c473517f5ba8f4d65b9b",
                "md5": "cf4c481904f8e7da50f1d2e895cb8cc5",
                "sha256": "6ad6957427be8f2e48d2f128b3382b3c8e33b4b26542d757e5957c9593773082"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "cf4c481904f8e7da50f1d2e895cb8cc5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1095057,
            "upload_time": "2024-05-03T10:21:55",
            "upload_time_iso_8601": "2024-05-03T10:21:55.554947Z",
            "url": "https://files.pythonhosted.org/packages/14/ea/7ce0378340ba7eadf5abc1c4f97e7e6c271ab517c473517f5ba8f4d65b9b/uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "819ec3a2dc1836978b7410a8daad8681fa604f44caa9ce061b7b7bd8188f5b46",
                "md5": "11782fc8d1363b3507401a41698d87b1",
                "sha256": "4c753f5b690a481d31f13668a57610a4ee9805d0bd4515ab74a3766bea3b0e66"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "11782fc8d1363b3507401a41698d87b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1225326,
            "upload_time": "2024-05-03T10:21:56",
            "upload_time_iso_8601": "2024-05-03T10:21:56.912963Z",
            "url": "https://files.pythonhosted.org/packages/81/9e/c3a2dc1836978b7410a8daad8681fa604f44caa9ce061b7b7bd8188f5b46/uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d77c3884dd1f1e4a2a125486b864a852c686180712c28c29e4ac2032538f8f4",
                "md5": "37504b669521e0c43c8b29e78b8676af",
                "sha256": "9e99615eb01550e1f883b5b251a04e8afe053dd30fb6c1af823bd14841bd9290"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37504b669521e0c43c8b29e78b8676af",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1070180,
            "upload_time": "2024-05-03T10:21:58",
            "upload_time_iso_8601": "2024-05-03T10:21:58.303372Z",
            "url": "https://files.pythonhosted.org/packages/9d/77/c3884dd1f1e4a2a125486b864a852c686180712c28c29e4ac2032538f8f4/uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39a2ed1b7e207099fa7d0a0880ad9b6045e10b8ad1694acd698edf1e0c6f3b15",
                "md5": "dc751ab064336e02397989e49e8d2c05",
                "sha256": "cb241970c10cccd37ecac5b3759276ca499cb5b639b832167f91b0a98383e89d"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "dc751ab064336e02397989e49e8d2c05",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1084018,
            "upload_time": "2024-05-03T10:21:59",
            "upload_time_iso_8601": "2024-05-03T10:21:59.595088Z",
            "url": "https://files.pythonhosted.org/packages/39/a2/ed1b7e207099fa7d0a0880ad9b6045e10b8ad1694acd698edf1e0c6f3b15/uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f96e7a87268e0337967d61e88e666a8e59d30aebfcbf47c8ee1e7b0202877764",
                "md5": "bc0e9f2d8ea5290a6de784c6788eb1af",
                "sha256": "14b672b950e792545fde222cf08f9ba9e30ac69399c2ca34b91d4fa457ce1528"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bc0e9f2d8ea5290a6de784c6788eb1af",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 175110,
            "upload_time": "2024-05-03T10:22:00",
            "upload_time_iso_8601": "2024-05-03T10:22:00.907492Z",
            "url": "https://files.pythonhosted.org/packages/f9/6e/7a87268e0337967d61e88e666a8e59d30aebfcbf47c8ee1e7b0202877764/uuid_utils-0.7.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3167eb65366d6265ea272070b493ea0d2ef460bb100f593edab94c8dee39be8",
                "md5": "6cdeb30872820863c8d6d1f540414b8f",
                "sha256": "1229b9849a239714899040f8af9c7b3b7ad790483ac0bdf06982eb03383e7a93"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp39-pypy39_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "6cdeb30872820863c8d6d1f540414b8f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 561596,
            "upload_time": "2024-05-03T10:22:02",
            "upload_time_iso_8601": "2024-05-03T10:22:02.263500Z",
            "url": "https://files.pythonhosted.org/packages/f3/16/7eb65366d6265ea272070b493ea0d2ef460bb100f593edab94c8dee39be8/uuid_utils-0.7.0-pp39-pypy39_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c512f425556be71b8835ecf92276269769cea5b62ce930cd1938da396a9878e2",
                "md5": "a10ca5f44685f40dfb14c02180e92f78",
                "sha256": "2b6c56101e5dedf06c81c5f3e3dc9d542feb4a5443b01a100c14eef6ae7e9ec4"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a10ca5f44685f40dfb14c02180e92f78",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 285647,
            "upload_time": "2024-05-03T10:22:03",
            "upload_time_iso_8601": "2024-05-03T10:22:03.963461Z",
            "url": "https://files.pythonhosted.org/packages/c5/12/f425556be71b8835ecf92276269769cea5b62ce930cd1938da396a9878e2/uuid_utils-0.7.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71f4460d89f19747fe77257e3a9e9669efd1014ef1e8b9c632ae06aec86e532b",
                "md5": "a77e77a0181274b46eb6b6bd7f51f434",
                "sha256": "77c7f5e54fad8d761e019122080b14fae9568dd09cbb908f349284efa8f9a792"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a77e77a0181274b46eb6b6bd7f51f434",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1059469,
            "upload_time": "2024-05-03T10:22:05",
            "upload_time_iso_8601": "2024-05-03T10:22:05.371123Z",
            "url": "https://files.pythonhosted.org/packages/71/f4/460d89f19747fe77257e3a9e9669efd1014ef1e8b9c632ae06aec86e532b/uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8cc1bc1ae51f1df194ea6a54768d3f1fabac21f18422cedaf55eb5850988186e",
                "md5": "54d5c8bad8eec349bcab086687796923",
                "sha256": "2b429a906f0dff1c35d55ca17c5f7fedf3149cb405808b43ba4f3a6d21732c31"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "54d5c8bad8eec349bcab086687796923",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1075721,
            "upload_time": "2024-05-03T10:22:06",
            "upload_time_iso_8601": "2024-05-03T10:22:06.900196Z",
            "url": "https://files.pythonhosted.org/packages/8c/c1/bc1ae51f1df194ea6a54768d3f1fabac21f18422cedaf55eb5850988186e/uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2db4e7a5254595e3a4abe4fde75c63c2a1d30fbbcb1ca3bdaae9ad859ff07b5e",
                "md5": "c2dc18817589b3f4ac746874624e3f5e",
                "sha256": "06608c7d643149dee92ceebc73a84bb736d4394f200ecb794541a79e10bc482d"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c2dc18817589b3f4ac746874624e3f5e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1094984,
            "upload_time": "2024-05-03T10:22:09",
            "upload_time_iso_8601": "2024-05-03T10:22:09.026349Z",
            "url": "https://files.pythonhosted.org/packages/2d/b4/e7a5254595e3a4abe4fde75c63c2a1d30fbbcb1ca3bdaae9ad859ff07b5e/uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f097fb4edffe3268f9ef4c2c3fa6e5e527ddada07b08df805e149161ab6f7dbe",
                "md5": "997285e53caa437f977d5a682e9ed51d",
                "sha256": "655e505c4e7c321e7f60572fdd594bdfdd96556a9699f697045e3d0b4699f30a"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "997285e53caa437f977d5a682e9ed51d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1224556,
            "upload_time": "2024-05-03T10:22:10",
            "upload_time_iso_8601": "2024-05-03T10:22:10.527936Z",
            "url": "https://files.pythonhosted.org/packages/f0/97/fb4edffe3268f9ef4c2c3fa6e5e527ddada07b08df805e149161ab6f7dbe/uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b2641beb53eacfbf07a827160234449e18e958846dbffeabed9bd073c54d169",
                "md5": "446a8c4e884671b6eece5a18a5b4bfde",
                "sha256": "c1e59447b45d5988572e450f43de5546e1d2f6643d2e0137d83b5fdad204fd05"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "446a8c4e884671b6eece5a18a5b4bfde",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1070062,
            "upload_time": "2024-05-03T10:22:11",
            "upload_time_iso_8601": "2024-05-03T10:22:11.888581Z",
            "url": "https://files.pythonhosted.org/packages/5b/26/41beb53eacfbf07a827160234449e18e958846dbffeabed9bd073c54d169/uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b239add5d753a29f26e68cd8563d173994a0a5c733cf36bcbe8e9a388d3ee3d6",
                "md5": "79ebd7a7b51a7298bc29fc5de8f9c973",
                "sha256": "f3010bdaff5c2a78980849aa6b082e7a0013949c8e4d317934f4aaacf14a2d22"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "79ebd7a7b51a7298bc29fc5de8f9c973",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1083673,
            "upload_time": "2024-05-03T10:22:13",
            "upload_time_iso_8601": "2024-05-03T10:22:13.231467Z",
            "url": "https://files.pythonhosted.org/packages/b2/39/add5d753a29f26e68cd8563d173994a0a5c733cf36bcbe8e9a388d3ee3d6/uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49352784b4cec6539cd215890b450dd8548701af05e69dda86e26ad625bdd009",
                "md5": "7c5af326745341a78b23ddb5bdb6356f",
                "sha256": "ec25fadeeb34c41ef95a8b849a3e4dcc39e96eb39367323ba873bc1732d6516a"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7c5af326745341a78b23ddb5bdb6356f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 175242,
            "upload_time": "2024-05-03T10:22:14",
            "upload_time_iso_8601": "2024-05-03T10:22:14.567396Z",
            "url": "https://files.pythonhosted.org/packages/49/35/2784b4cec6539cd215890b450dd8548701af05e69dda86e26ad625bdd009/uuid_utils-0.7.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d724e0f878ec6563bee5132823c941a4b037c281678ae84b71c7a7ba7957f314",
                "md5": "46c190f8815f7fb0ab540b5a2587237a",
                "sha256": "015aa22711ffd57c5001c2477c6a40121db2794ae3be181a0bf79eef80e28943"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.7.0.tar.gz",
            "has_sig": false,
            "md5_digest": "46c190f8815f7fb0ab540b5a2587237a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 17449,
            "upload_time": "2024-05-03T10:22:15",
            "upload_time_iso_8601": "2024-05-03T10:22:15.648100Z",
            "url": "https://files.pythonhosted.org/packages/d7/24/e0f878ec6563bee5132823c941a4b037c281678ae84b71c7a7ba7957f314/uuid_utils-0.7.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-03 10:22:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aminalaee",
    "github_project": "uuid-utils",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "uuid-utils"
}
        
Elapsed time: 0.31258s