uuid-utils


Nameuuid-utils JSON
Version 0.6.1 PyPI version JSON
download
home_pageNone
SummaryDrop-in replacement for Python UUID in Rust
upload_time2023-11-06 09:41:37
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
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')
```

## 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.7",
    "maintainer_email": null,
    "keywords": "rust,uuid",
    "author": null,
    "author_email": "Amin Alaee <me@aminalaee.dev>",
    "download_url": "https://files.pythonhosted.org/packages/1f/ed/e03054aaed25c64c328b211b16d3e34df6287822c1b11c2747841545c963/uuid_utils-0.6.1.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## 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.6.1",
    "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": "f8b1d5a08cf7d8f05b29921951d1186a5dcc6a5d098f2320686a87dd87ae0da8",
                "md5": "8fd732f04da5bcb72c00d5b73268acc9",
                "sha256": "345175cad9f8521365aee7aaa70980e31ab6a78e062e5f2132bed0c463e47884"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8fd732f04da5bcb72c00d5b73268acc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 332209,
            "upload_time": "2023-11-06T09:38:13",
            "upload_time_iso_8601": "2023-11-06T09:38:13.182869Z",
            "url": "https://files.pythonhosted.org/packages/f8/b1/d5a08cf7d8f05b29921951d1186a5dcc6a5d098f2320686a87dd87ae0da8/uuid_utils-0.6.1-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ea4a9ab0bf178c0bd5cbee677aa70625216ed9600bfceca67ae5e385777324f",
                "md5": "e9018bbf86fa623a36142fca711bab34",
                "sha256": "dacfdce01268e34aa799ec14a2bb5cf3db5b72e2b50aef14ce4b575be9f783ef"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e9018bbf86fa623a36142fca711bab34",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 645947,
            "upload_time": "2023-11-06T09:38:15",
            "upload_time_iso_8601": "2023-11-06T09:38:15.835997Z",
            "url": "https://files.pythonhosted.org/packages/4e/a4/a9ab0bf178c0bd5cbee677aa70625216ed9600bfceca67ae5e385777324f/uuid_utils-0.6.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55b55f36dd19f1f9f733b030de8fd0d4584c8e98b566716968d470a321fe2089",
                "md5": "1735641d3ee6c9dd097f78dbfdc2ccad",
                "sha256": "23c34e9b5886dadb37ca7d4a6d6c30d1a97eb168db3834a5d1d50ac94e3dabba"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1735641d3ee6c9dd097f78dbfdc2ccad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1218093,
            "upload_time": "2023-11-06T09:38:18",
            "upload_time_iso_8601": "2023-11-06T09:38:18.103456Z",
            "url": "https://files.pythonhosted.org/packages/55/b5/5f36dd19f1f9f733b030de8fd0d4584c8e98b566716968d470a321fe2089/uuid_utils-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1fb25f09a4149be509f4edfddd6e522dc9f15fb3167542e347f66070fadd178",
                "md5": "2ef1f1163404c3aeaaebcd7969485ac4",
                "sha256": "f800730c7ed0568d3da52792955929cfdc3b470ed31d66465a6d7c3b35025fc8"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2ef1f1163404c3aeaaebcd7969485ac4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1216723,
            "upload_time": "2023-11-06T09:38:20",
            "upload_time_iso_8601": "2023-11-06T09:38:20.245483Z",
            "url": "https://files.pythonhosted.org/packages/a1/fb/25f09a4149be509f4edfddd6e522dc9f15fb3167542e347f66070fadd178/uuid_utils-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5df9e9ab1182984a169543634420705353e509659f2849286c28aef12c490848",
                "md5": "fa65eb3e30f37def28f01e26731c92cc",
                "sha256": "3243c393c01190a48847262849ab200c14b46d067e31231c5fc6ae4b74d3b56d"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fa65eb3e30f37def28f01e26731c92cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1330147,
            "upload_time": "2023-11-06T09:38:22",
            "upload_time_iso_8601": "2023-11-06T09:38:22.397405Z",
            "url": "https://files.pythonhosted.org/packages/5d/f9/e9ab1182984a169543634420705353e509659f2849286c28aef12c490848/uuid_utils-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7697a6f8da2b36216905b1332fa41ceb4aee2c2034c4e1d9d380f007fa66f40",
                "md5": "71d550cd2b2c384e53d2905ad4e9919c",
                "sha256": "9c6d416c49de1574195ceeefd5ab96a32bf66fba55fdf759f2d44b4e999b75c1"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "71d550cd2b2c384e53d2905ad4e9919c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1408392,
            "upload_time": "2023-11-06T09:38:24",
            "upload_time_iso_8601": "2023-11-06T09:38:24.685893Z",
            "url": "https://files.pythonhosted.org/packages/b7/69/7a6f8da2b36216905b1332fa41ceb4aee2c2034c4e1d9d380f007fa66f40/uuid_utils-0.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b766b30b9b3636df74768724458d0426ccbafca5f7aa6bf0ccbbbfa7f37dafe7",
                "md5": "408328ce0073ee88750daebf6045f88c",
                "sha256": "fb5800da399043ca7d002658412f303dcadf0c8328fd2402a9ccbf2ad574d522"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "408328ce0073ee88750daebf6045f88c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1223564,
            "upload_time": "2023-11-06T09:38:27",
            "upload_time_iso_8601": "2023-11-06T09:38:27.211592Z",
            "url": "https://files.pythonhosted.org/packages/b7/66/b30b9b3636df74768724458d0426ccbafca5f7aa6bf0ccbbbfa7f37dafe7/uuid_utils-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08f5140fafe8e807317bac27e926d0c80aa4e0d6cb5c4efc7f5085744d32c889",
                "md5": "2f16f55342e6c717296247ec34c80b2c",
                "sha256": "7da2e9fb54c500d8e9fc7868863e39cc5a13ad7bd42e0a442fd13c1425e17206"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2f16f55342e6c717296247ec34c80b2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1240468,
            "upload_time": "2023-11-06T09:38:29",
            "upload_time_iso_8601": "2023-11-06T09:38:29.163517Z",
            "url": "https://files.pythonhosted.org/packages/08/f5/140fafe8e807317bac27e926d0c80aa4e0d6cb5c4efc7f5085744d32c889/uuid_utils-0.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd426ef6241c7331ecabcf96f9c14914379187ca7c832d0cac4c2e4404ba54f1",
                "md5": "57970e884ccc67e1ded3432536ae910d",
                "sha256": "6f7a72317ff867533f9aa90b00033ae9cc4603c93af86772dacaf032ff4cbf97"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "57970e884ccc67e1ded3432536ae910d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1386870,
            "upload_time": "2023-11-06T09:38:31",
            "upload_time_iso_8601": "2023-11-06T09:38:31.858747Z",
            "url": "https://files.pythonhosted.org/packages/fd/42/6ef6241c7331ecabcf96f9c14914379187ca7c832d0cac4c2e4404ba54f1/uuid_utils-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf08f25202cc8625d450e1cf1d727e9daa3d1307bc2cf818329924beaf70a846",
                "md5": "1aac63e6000751a8f1fc522923fa4b38",
                "sha256": "adbe0a62dcc8369fbbac7371273a45ee882ec51c7b7d4c960e7776a556a1fbdc"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1aac63e6000751a8f1fc522923fa4b38",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1400710,
            "upload_time": "2023-11-06T09:38:33",
            "upload_time_iso_8601": "2023-11-06T09:38:33.759496Z",
            "url": "https://files.pythonhosted.org/packages/bf/08/f25202cc8625d450e1cf1d727e9daa3d1307bc2cf818329924beaf70a846/uuid_utils-0.6.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1d41757333abfbf4f46819b0c814cec74f3948d56816cb8ee4978fea2d05e80",
                "md5": "082a8d3d8455ef99909203a60a50eed6",
                "sha256": "8f8cdd3a46eac04dbbfec79ad38b5162a00285e98739afa45e7c1464e7a85fd3"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "082a8d3d8455ef99909203a60a50eed6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1388597,
            "upload_time": "2023-11-06T09:38:35",
            "upload_time_iso_8601": "2023-11-06T09:38:35.799985Z",
            "url": "https://files.pythonhosted.org/packages/a1/d4/1757333abfbf4f46819b0c814cec74f3948d56816cb8ee4978fea2d05e80/uuid_utils-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d124222d8902bbf7752003e43e5f77896fb0c46f85023ce0ec0c6e503da4f44",
                "md5": "ef60f3658b5cd90f0cf284acad4d5403",
                "sha256": "e2c1d563f2ee80136901b707f9cc3b234715f2d43ea30690215ba96b783da224"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ef60f3658b5cd90f0cf284acad4d5403",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 172059,
            "upload_time": "2023-11-06T09:38:38",
            "upload_time_iso_8601": "2023-11-06T09:38:38.309097Z",
            "url": "https://files.pythonhosted.org/packages/0d/12/4222d8902bbf7752003e43e5f77896fb0c46f85023ce0ec0c6e503da4f44/uuid_utils-0.6.1-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3537e70e5eb3da5ef0a33b283fef3fdd6c675fb189fc0e58c883df9dac289202",
                "md5": "0e40df5f7f8aa500dddbb34fbc667f94",
                "sha256": "28570adbb090b2ff353d4073262acee1b4e12d03d06ffbf6f9a18ee385c692e0"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0e40df5f7f8aa500dddbb34fbc667f94",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 180134,
            "upload_time": "2023-11-06T09:38:39",
            "upload_time_iso_8601": "2023-11-06T09:38:39.926880Z",
            "url": "https://files.pythonhosted.org/packages/35/37/e70e5eb3da5ef0a33b283fef3fdd6c675fb189fc0e58c883df9dac289202/uuid_utils-0.6.1-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24a8b0d0052be4243e47047253000c37e3bd66fe634245465d83777c93945fd1",
                "md5": "e041d728fdea4f1ffa05db12dd1e0c44",
                "sha256": "3a2c9491b5c4bba2251dbb99f38dba59954e3e7927c66d1aca9014dd6f2f7231"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e041d728fdea4f1ffa05db12dd1e0c44",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 332198,
            "upload_time": "2023-11-06T09:38:42",
            "upload_time_iso_8601": "2023-11-06T09:38:42.001302Z",
            "url": "https://files.pythonhosted.org/packages/24/a8/b0d0052be4243e47047253000c37e3bd66fe634245465d83777c93945fd1/uuid_utils-0.6.1-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aedd1b9ae314e5c03973979681e9ecf388fd809528cc37af4caf1fba5584ee25",
                "md5": "14a78b9fc0882752401645a57d3d13a6",
                "sha256": "db952fabb1ba0044c5b080bcb0cad83cb49f2bdc93ed180972460af8416e0765"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "14a78b9fc0882752401645a57d3d13a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 646229,
            "upload_time": "2023-11-06T09:38:44",
            "upload_time_iso_8601": "2023-11-06T09:38:44.217589Z",
            "url": "https://files.pythonhosted.org/packages/ae/dd/1b9ae314e5c03973979681e9ecf388fd809528cc37af4caf1fba5584ee25/uuid_utils-0.6.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf142f419142d1ff5709d37a2a13c7397a3288340f42ff614e003489168bf290",
                "md5": "a40b6f7bb09476b4ac9525b6a3f3b072",
                "sha256": "15d6e59f7b838e060a4aa5787fc7ee2594e1d05407dc24f5c5fc13f7fba0f153"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a40b6f7bb09476b4ac9525b6a3f3b072",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1217961,
            "upload_time": "2023-11-06T09:38:46",
            "upload_time_iso_8601": "2023-11-06T09:38:46.223511Z",
            "url": "https://files.pythonhosted.org/packages/bf/14/2f419142d1ff5709d37a2a13c7397a3288340f42ff614e003489168bf290/uuid_utils-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86a4a214a7dbb8be27e28382f7e5a2a840aea42897a6e34832f651a2e7791efd",
                "md5": "ca7feb0cd8badcf561f71066d1c381fe",
                "sha256": "0a1a67c8e2f4afe81f6a2eee35b5065a6e8a954ed79c2c739cd508e9fa4113c1"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ca7feb0cd8badcf561f71066d1c381fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1216688,
            "upload_time": "2023-11-06T09:38:48",
            "upload_time_iso_8601": "2023-11-06T09:38:48.391622Z",
            "url": "https://files.pythonhosted.org/packages/86/a4/a214a7dbb8be27e28382f7e5a2a840aea42897a6e34832f651a2e7791efd/uuid_utils-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa0a21225be335af334f4ce782f2b42cad4d99be75cbcb0e67e73663e3f04427",
                "md5": "9f8484f2193ba051592a7d95ac8b6603",
                "sha256": "806b744a4ec145d3eb314ab755a09fd1b1cb4070f996011d08c2378453f629d0"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9f8484f2193ba051592a7d95ac8b6603",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1330281,
            "upload_time": "2023-11-06T09:38:50",
            "upload_time_iso_8601": "2023-11-06T09:38:50.713309Z",
            "url": "https://files.pythonhosted.org/packages/fa/0a/21225be335af334f4ce782f2b42cad4d99be75cbcb0e67e73663e3f04427/uuid_utils-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f754098a7fc5d275d7dd381dfc16aba67eeb7d833b2bd9ffe5443ca4cb6695c6",
                "md5": "7051e2c1bf965a1967b809c7682f09ab",
                "sha256": "3b0f978fb4450065a30dbe0c46bd3a2d68c0541f7a1d25556316fabc03bee293"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7051e2c1bf965a1967b809c7682f09ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1408366,
            "upload_time": "2023-11-06T09:38:53",
            "upload_time_iso_8601": "2023-11-06T09:38:53.069070Z",
            "url": "https://files.pythonhosted.org/packages/f7/54/098a7fc5d275d7dd381dfc16aba67eeb7d833b2bd9ffe5443ca4cb6695c6/uuid_utils-0.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce1ad20ccef2486c77af00793c39cbd1af6d4896b6b633d89a1e51ffc7f97a91",
                "md5": "cdd68c26adbe0ea50e89ba0f91073e82",
                "sha256": "8a222da8cc035ddbf47e3a61812b49dc66acb83a0361be1fc1090830b9605291"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cdd68c26adbe0ea50e89ba0f91073e82",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1223621,
            "upload_time": "2023-11-06T09:38:54",
            "upload_time_iso_8601": "2023-11-06T09:38:54.926814Z",
            "url": "https://files.pythonhosted.org/packages/ce/1a/d20ccef2486c77af00793c39cbd1af6d4896b6b633d89a1e51ffc7f97a91/uuid_utils-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffd0b3128cd1108945ec54d8f4ed4a7d839fb21ba08e6e095b6686f4be7453ec",
                "md5": "05cbd7dc323614e50d2bcd631ed4b394",
                "sha256": "aa2993e4ed05257d272444b0b2c9f792be520e181ab9813a017b9cc671d6df92"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "05cbd7dc323614e50d2bcd631ed4b394",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1244440,
            "upload_time": "2023-11-06T09:38:57",
            "upload_time_iso_8601": "2023-11-06T09:38:57.435552Z",
            "url": "https://files.pythonhosted.org/packages/ff/d0/b3128cd1108945ec54d8f4ed4a7d839fb21ba08e6e095b6686f4be7453ec/uuid_utils-0.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ab301544eba2de99f21a6d056ec8c2cabe5765fdc95ee24bb049bf3839e0e63",
                "md5": "c7b3ec8a5af2d8eb0e1782bd66b9fdfa",
                "sha256": "51cd6b925882d08a2147adee9bfa07f328bc394f4fd7852581f187ab2ab38c81"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c7b3ec8a5af2d8eb0e1782bd66b9fdfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1386938,
            "upload_time": "2023-11-06T09:38:59",
            "upload_time_iso_8601": "2023-11-06T09:38:59.837647Z",
            "url": "https://files.pythonhosted.org/packages/4a/b3/01544eba2de99f21a6d056ec8c2cabe5765fdc95ee24bb049bf3839e0e63/uuid_utils-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85226f3bba1b338ccb251a976e9fb7391a53e5a76d11e07c00812922dcab49b4",
                "md5": "7dff086701ed89f4d3737fed064e0196",
                "sha256": "a9e8806e2b6cbfc35a4596e1266e98364c66fe13e4aa2d4eec88c4be202b9d85"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7dff086701ed89f4d3737fed064e0196",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1400801,
            "upload_time": "2023-11-06T09:39:02",
            "upload_time_iso_8601": "2023-11-06T09:39:02.227656Z",
            "url": "https://files.pythonhosted.org/packages/85/22/6f3bba1b338ccb251a976e9fb7391a53e5a76d11e07c00812922dcab49b4/uuid_utils-0.6.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdf6349b2de1919e3cca3f1bf4d7af59b7595d30a3efd39d32264b6c519d0444",
                "md5": "70a2cc0c01d77f7584cfa4f84dd9c2b2",
                "sha256": "9bcf6bd9e96ba39495e082556fb385a7bd783a393a02a5e1282d9f37f62b6516"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "70a2cc0c01d77f7584cfa4f84dd9c2b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1388810,
            "upload_time": "2023-11-06T09:39:05",
            "upload_time_iso_8601": "2023-11-06T09:39:05.133199Z",
            "url": "https://files.pythonhosted.org/packages/fd/f6/349b2de1919e3cca3f1bf4d7af59b7595d30a3efd39d32264b6c519d0444/uuid_utils-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2fa608dfcf9476d64b8b10224db85994a686583bdf916caad5172e7496eceb3",
                "md5": "7f076a5df95367725824351922b5cccd",
                "sha256": "f89456345154d2599ccaea097917a641575126341a1b894e3ec0a341db80b252"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "7f076a5df95367725824351922b5cccd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 171947,
            "upload_time": "2023-11-06T09:39:07",
            "upload_time_iso_8601": "2023-11-06T09:39:07.171487Z",
            "url": "https://files.pythonhosted.org/packages/a2/fa/608dfcf9476d64b8b10224db85994a686583bdf916caad5172e7496eceb3/uuid_utils-0.6.1-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c079a28f6d58bd98464c7299aeb5c36ba8c7c81cf6891be9f53b6de9d041b82",
                "md5": "c68cdd6927ec16a9eb3a4d7ed2aacae2",
                "sha256": "8d15f51c810defb7a456edceae712ab202590f3ae5af0a6f0d8dee0289cf1bf6"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c68cdd6927ec16a9eb3a4d7ed2aacae2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 180346,
            "upload_time": "2023-11-06T09:39:08",
            "upload_time_iso_8601": "2023-11-06T09:39:08.692147Z",
            "url": "https://files.pythonhosted.org/packages/1c/07/9a28f6d58bd98464c7299aeb5c36ba8c7c81cf6891be9f53b6de9d041b82/uuid_utils-0.6.1-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d536b4f49b27a55a979a5cafce547730f0b60bbd98b50de6fb2e0ae35960629f",
                "md5": "84a94b9cdffec500a0b9dfb2c598f7c9",
                "sha256": "2fb3f2ada52cc1c048d5ba17b58f676367135077add1476419b03594d12e1bea"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84a94b9cdffec500a0b9dfb2c598f7c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 329142,
            "upload_time": "2023-11-06T09:39:10",
            "upload_time_iso_8601": "2023-11-06T09:39:10.285204Z",
            "url": "https://files.pythonhosted.org/packages/d5/36/b4f49b27a55a979a5cafce547730f0b60bbd98b50de6fb2e0ae35960629f/uuid_utils-0.6.1-cp312-cp312-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64d02a213d052d12f4c26d35b2d0bffeb5ab3ecee727572308205d44f6dd73f1",
                "md5": "c6456d7690516245ec3e6e9540207b45",
                "sha256": "db74b440b17d7f8b7eacc9085bc4842d835a9d00be4c6de8fac92d9baec66394"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c6456d7690516245ec3e6e9540207b45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 641459,
            "upload_time": "2023-11-06T09:39:12",
            "upload_time_iso_8601": "2023-11-06T09:39:12.354863Z",
            "url": "https://files.pythonhosted.org/packages/64/d0/2a213d052d12f4c26d35b2d0bffeb5ab3ecee727572308205d44f6dd73f1/uuid_utils-0.6.1-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f58b838f8dfa638734dbd0bbe64ae6cf9277aea192ab71a74802161fc665a04",
                "md5": "b4492ef059b194e071796fe07218e7a8",
                "sha256": "09de303c3e556c00cdd41028fc52a51fff4c43cea0842c7d9522daf5df39c85c"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b4492ef059b194e071796fe07218e7a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1215309,
            "upload_time": "2023-11-06T09:39:14",
            "upload_time_iso_8601": "2023-11-06T09:39:14.303143Z",
            "url": "https://files.pythonhosted.org/packages/1f/58/b838f8dfa638734dbd0bbe64ae6cf9277aea192ab71a74802161fc665a04/uuid_utils-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5872660a7d9eda3f5358b9b1b7221c38d01e50ebfa3c7ca38c3ea68f42e32c6",
                "md5": "5e83beb0ab807ec14b0136b0c704a7a5",
                "sha256": "e2a0788c036bb3e5f3ef4878fc2eb9337e641f84d97629ade2d2490a94ca7baf"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5e83beb0ab807ec14b0136b0c704a7a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1216628,
            "upload_time": "2023-11-06T09:39:16",
            "upload_time_iso_8601": "2023-11-06T09:39:16.280462Z",
            "url": "https://files.pythonhosted.org/packages/b5/87/2660a7d9eda3f5358b9b1b7221c38d01e50ebfa3c7ca38c3ea68f42e32c6/uuid_utils-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b13695c46637ce5d8f4dbd6fbdd84bd1f114bd8c866703f1c64acca45e9d030b",
                "md5": "ca622e3bf87aec647f502dc7a542758f",
                "sha256": "7d48b386a98ac553ebffbee8b4a1ad657a6ccb20999adf026402fc6367a00b60"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ca622e3bf87aec647f502dc7a542758f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1327271,
            "upload_time": "2023-11-06T09:39:18",
            "upload_time_iso_8601": "2023-11-06T09:39:18.633881Z",
            "url": "https://files.pythonhosted.org/packages/b1/36/95c46637ce5d8f4dbd6fbdd84bd1f114bd8c866703f1c64acca45e9d030b/uuid_utils-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21e726b3702d7a51024a8b7a768c201e20cee9fb0f11247f4fb413fb2af57dcc",
                "md5": "6bc4db64881cf923f41166890a921387",
                "sha256": "3455de9e7171bc781b7cea3132c43e92669baaf8254be07832c23a057537571c"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6bc4db64881cf923f41166890a921387",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1394817,
            "upload_time": "2023-11-06T09:39:20",
            "upload_time_iso_8601": "2023-11-06T09:39:20.957976Z",
            "url": "https://files.pythonhosted.org/packages/21/e7/26b3702d7a51024a8b7a768c201e20cee9fb0f11247f4fb413fb2af57dcc/uuid_utils-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f8b031e58a270b5cc2c2ef997da5a17a0f9bd90150e2830e9bcb1dfc4696f97",
                "md5": "82f48bba00d8aab85519894e8f462056",
                "sha256": "db6feb2dca0dd15bb9cbc789345e493ef611d0f0befb3dc8b3c579899dfdb5cb"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82f48bba00d8aab85519894e8f462056",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1220187,
            "upload_time": "2023-11-06T09:39:23",
            "upload_time_iso_8601": "2023-11-06T09:39:23.323087Z",
            "url": "https://files.pythonhosted.org/packages/3f/8b/031e58a270b5cc2c2ef997da5a17a0f9bd90150e2830e9bcb1dfc4696f97/uuid_utils-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6dafc7ec2b3d62d4ff22639cbba0cfd40dbe446cc88ba9617166aa9a08aa640a",
                "md5": "588c67aa1ac6c23a3cf7ab2e24de94e9",
                "sha256": "1cd747509eed588b5ae725cf51730f7a5a6364f16d6226682d5ccecc36ac668f"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "588c67aa1ac6c23a3cf7ab2e24de94e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1239657,
            "upload_time": "2023-11-06T09:39:25",
            "upload_time_iso_8601": "2023-11-06T09:39:25.570108Z",
            "url": "https://files.pythonhosted.org/packages/6d/af/c7ec2b3d62d4ff22639cbba0cfd40dbe446cc88ba9617166aa9a08aa640a/uuid_utils-0.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b4d160b69fa037f7059cf250dbaaebedc1d4bdfad957fc6dcdb041feb6a2339",
                "md5": "73e1a7c523efb8c3828d4ae8889d6301",
                "sha256": "d6d56f1342692877e6195a80f4abc7c15d7b7f830b49c407adc6d7e8650a101c"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "73e1a7c523efb8c3828d4ae8889d6301",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1383243,
            "upload_time": "2023-11-06T09:39:27",
            "upload_time_iso_8601": "2023-11-06T09:39:27.479932Z",
            "url": "https://files.pythonhosted.org/packages/5b/4d/160b69fa037f7059cf250dbaaebedc1d4bdfad957fc6dcdb041feb6a2339/uuid_utils-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "981ec6b687a30f960087e719ac391cf961444bb8ba77285362f2e6e5814a5e17",
                "md5": "4240d38afe7b0f38ef6f6ee9af5caef4",
                "sha256": "43b2e6bd4f7198f084c7071abfe04f2f2b9ea14427ffb7b28f17ff67138b2c1b"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4240d38afe7b0f38ef6f6ee9af5caef4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1398617,
            "upload_time": "2023-11-06T09:39:29",
            "upload_time_iso_8601": "2023-11-06T09:39:29.711222Z",
            "url": "https://files.pythonhosted.org/packages/98/1e/c6b687a30f960087e719ac391cf961444bb8ba77285362f2e6e5814a5e17/uuid_utils-0.6.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d801c379bf8b68f6ac8a439fae4eaed7bf2a7f43d57651bf0fd58e48584fd03",
                "md5": "6be5f8685105cee39ce34c2419f6b37e",
                "sha256": "08aef4e2012959649be6a61ec8c5e19d9cd7d2eb362ff77c1a8ae7a83e5e7cb6"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6be5f8685105cee39ce34c2419f6b37e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1386363,
            "upload_time": "2023-11-06T09:39:32",
            "upload_time_iso_8601": "2023-11-06T09:39:32.392217Z",
            "url": "https://files.pythonhosted.org/packages/7d/80/1c379bf8b68f6ac8a439fae4eaed7bf2a7f43d57651bf0fd58e48584fd03/uuid_utils-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0ed818ddfd773f0f62e98deaab08120a378a0b435d5d02d1fb27b438ab20e1e",
                "md5": "542f18ed3d7c9fdf10be2962dcdee636",
                "sha256": "7a8ece4438b04018b053d97d4095c6a523ec7e6f4774a4d09e76c15161444691"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "542f18ed3d7c9fdf10be2962dcdee636",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 179616,
            "upload_time": "2023-11-06T09:39:35",
            "upload_time_iso_8601": "2023-11-06T09:39:35.151346Z",
            "url": "https://files.pythonhosted.org/packages/a0/ed/818ddfd773f0f62e98deaab08120a378a0b435d5d02d1fb27b438ab20e1e/uuid_utils-0.6.1-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "126b179487cccb7fe4a89a4ed07e96fed6b4f0931676c296e6e0bc76bc3a5e37",
                "md5": "c2d6eb15f902cd5aa74afb175208e8f0",
                "sha256": "3b05caa21a5a23af28d79a44ed0ff678606405ed0462bd01875fa0fda802334f"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-cp37m-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2d6eb15f902cd5aa74afb175208e8f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 332655,
            "upload_time": "2023-11-06T09:39:37",
            "upload_time_iso_8601": "2023-11-06T09:39:37.215571Z",
            "url": "https://files.pythonhosted.org/packages/12/6b/179487cccb7fe4a89a4ed07e96fed6b4f0931676c296e6e0bc76bc3a5e37/uuid_utils-0.6.1-cp37-cp37m-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cedd491e50a1dd2096a69eb8e96e93b25c130fc18ebeaa3c8f94a847624f55ee",
                "md5": "696c923f8aa5683d9c0d374fc7863735",
                "sha256": "4d33e99fc6a78d7ab3acac42c64da6825b3a5a50c0bd596e6e1f0fb440972d06"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "696c923f8aa5683d9c0d374fc7863735",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1218662,
            "upload_time": "2023-11-06T09:39:39",
            "upload_time_iso_8601": "2023-11-06T09:39:39.061822Z",
            "url": "https://files.pythonhosted.org/packages/ce/dd/491e50a1dd2096a69eb8e96e93b25c130fc18ebeaa3c8f94a847624f55ee/uuid_utils-0.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca352cd05270e3c7427822f8a41834591dc205cdd81e7ffa7742a32ef435b188",
                "md5": "b2fdd7c025be924376dbcf7584749851",
                "sha256": "25d9d73c08f9787a6d18ee6720ac204fac3c297ff7f42239651edaef5f7fe90c"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b2fdd7c025be924376dbcf7584749851",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1217155,
            "upload_time": "2023-11-06T09:39:41",
            "upload_time_iso_8601": "2023-11-06T09:39:41.910240Z",
            "url": "https://files.pythonhosted.org/packages/ca/35/2cd05270e3c7427822f8a41834591dc205cdd81e7ffa7742a32ef435b188/uuid_utils-0.6.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79cd508f5b98594755f5e9d2bdecc4868833b32b679d400f9727469b76d9c66e",
                "md5": "af29cc900318721f206c30bff5530b27",
                "sha256": "6545d7b8d1ce8138ebb5dd7fdeef9644494007cedb0d05c72d157728cf516814"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "af29cc900318721f206c30bff5530b27",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1331118,
            "upload_time": "2023-11-06T09:39:43",
            "upload_time_iso_8601": "2023-11-06T09:39:43.983819Z",
            "url": "https://files.pythonhosted.org/packages/79/cd/508f5b98594755f5e9d2bdecc4868833b32b679d400f9727469b76d9c66e/uuid_utils-0.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b02ab4f7ed18199bda72cfee1598e91145c41c66520d7d92c49c03106e029bdb",
                "md5": "c1cadfd0f102e3768e269e1bba775291",
                "sha256": "8419eeeb40fa35210f56396b063dd5eddfbb012edef6bff9df36d8ed3e8552de"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c1cadfd0f102e3768e269e1bba775291",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1409507,
            "upload_time": "2023-11-06T09:39:46",
            "upload_time_iso_8601": "2023-11-06T09:39:46.333701Z",
            "url": "https://files.pythonhosted.org/packages/b0/2a/b4f7ed18199bda72cfee1598e91145c41c66520d7d92c49c03106e029bdb/uuid_utils-0.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b25993c6142a7218ead777c78d7f14fc7cf59d9b35501062650c574f8399962",
                "md5": "55fc0b451ce6ec55302c91bc2851206a",
                "sha256": "b2eef476d3ca219a7e2d97a675e41d490354ae6f14c45106b4b260fcf886dd52"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55fc0b451ce6ec55302c91bc2851206a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1224638,
            "upload_time": "2023-11-06T09:39:48",
            "upload_time_iso_8601": "2023-11-06T09:39:48.443847Z",
            "url": "https://files.pythonhosted.org/packages/1b/25/993c6142a7218ead777c78d7f14fc7cf59d9b35501062650c574f8399962/uuid_utils-0.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5284e184b0247a1a668cc75af5afb00dd3431938b8a684000e69aa8546248a09",
                "md5": "99553f73d81e9ac03bbe0bc2762f2262",
                "sha256": "aa4854f3c021252fbba0eea8dc1261434563527636c14929deb84a0455db709e"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "99553f73d81e9ac03bbe0bc2762f2262",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1241304,
            "upload_time": "2023-11-06T09:39:50",
            "upload_time_iso_8601": "2023-11-06T09:39:50.522602Z",
            "url": "https://files.pythonhosted.org/packages/52/84/e184b0247a1a668cc75af5afb00dd3431938b8a684000e69aa8546248a09/uuid_utils-0.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24858fe1ada3891a9d326b8b20ac48aa840ef133f41e8b32fed7bf070882f02d",
                "md5": "9caa82d6b26eaa1725562c2a9961a20f",
                "sha256": "03263bb32179e3e0cbeb18547580fc246f68fbdd70ed828f543f38866a80ae68"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9caa82d6b26eaa1725562c2a9961a20f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1387334,
            "upload_time": "2023-11-06T09:39:52",
            "upload_time_iso_8601": "2023-11-06T09:39:52.395086Z",
            "url": "https://files.pythonhosted.org/packages/24/85/8fe1ada3891a9d326b8b20ac48aa840ef133f41e8b32fed7bf070882f02d/uuid_utils-0.6.1-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bfade2b08f5311f11462c9d83c39fcc95e05706c1e881fc4d0dab07d105b6db",
                "md5": "f578c095d4000627e99a9eb643d2ab0b",
                "sha256": "d4174ddf7626a4d06ba7977a27268fe810b8aea2068addbfcc1d9570950076dc"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f578c095d4000627e99a9eb643d2ab0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1401914,
            "upload_time": "2023-11-06T09:39:54",
            "upload_time_iso_8601": "2023-11-06T09:39:54.783660Z",
            "url": "https://files.pythonhosted.org/packages/7b/fa/de2b08f5311f11462c9d83c39fcc95e05706c1e881fc4d0dab07d105b6db/uuid_utils-0.6.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2759ee72e336674001710ded229bc3753f3fd186060625a168dd461c515bc3b",
                "md5": "62f2bd46a9df48a900db59eb0c4031b5",
                "sha256": "aa501e2137ab66e18ea9b3d8c8d37afed1d7251e7e3c93959556713ee8178316"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62f2bd46a9df48a900db59eb0c4031b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1389331,
            "upload_time": "2023-11-06T09:39:56",
            "upload_time_iso_8601": "2023-11-06T09:39:56.719509Z",
            "url": "https://files.pythonhosted.org/packages/d2/75/9ee72e336674001710ded229bc3753f3fd186060625a168dd461c515bc3b/uuid_utils-0.6.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb13aceb45281a148ef2946e49d84fc4a09216ae965912e68d7489b6327e39ec",
                "md5": "298dedd431ff22515fd3e82c8bf4e700",
                "sha256": "ef5a614a591e1a58a238029611507c637ff12d3130e1bf4efc45b35449487daf"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "298dedd431ff22515fd3e82c8bf4e700",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 171913,
            "upload_time": "2023-11-06T09:39:58",
            "upload_time_iso_8601": "2023-11-06T09:39:58.336985Z",
            "url": "https://files.pythonhosted.org/packages/cb/13/aceb45281a148ef2946e49d84fc4a09216ae965912e68d7489b6327e39ec/uuid_utils-0.6.1-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9fb46fac248566fc5930a3b2273f9df0e8b5becb2ee071ec8cf3131f0f8dccc",
                "md5": "1fbf61d54b94aabded424289595f7be4",
                "sha256": "dfc1f2cd5c37bf7b336b4cc32b7d920974e340d6e3c9cacff525c33af4f57875"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1fbf61d54b94aabded424289595f7be4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 180788,
            "upload_time": "2023-11-06T09:40:00",
            "upload_time_iso_8601": "2023-11-06T09:40:00.263782Z",
            "url": "https://files.pythonhosted.org/packages/a9/fb/46fac248566fc5930a3b2273f9df0e8b5becb2ee071ec8cf3131f0f8dccc/uuid_utils-0.6.1-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d56b72bc04079b700d549f666225656157e21de1fbc9f0e9df99013c13e0213",
                "md5": "77616f17f6f92c9224c5c50283c70a72",
                "sha256": "1731469a723d558e3a9e34dc234726f17a6f912bcdff71c076c14b480160217f"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77616f17f6f92c9224c5c50283c70a72",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 332616,
            "upload_time": "2023-11-06T09:40:02",
            "upload_time_iso_8601": "2023-11-06T09:40:02.454767Z",
            "url": "https://files.pythonhosted.org/packages/5d/56/b72bc04079b700d549f666225656157e21de1fbc9f0e9df99013c13e0213/uuid_utils-0.6.1-cp38-cp38-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3daeeda6d5d59a5299525506f833a76ebffed51c85b0407c46184d60b207055",
                "md5": "57172204c6f3a5002fe651e11f0a363b",
                "sha256": "37084980bd74ab9eba74135864bd8d0e2f4dca97f654122bfbbb1d5258256ebb"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "57172204c6f3a5002fe651e11f0a363b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 646724,
            "upload_time": "2023-11-06T09:40:04",
            "upload_time_iso_8601": "2023-11-06T09:40:04.940542Z",
            "url": "https://files.pythonhosted.org/packages/d3/da/eeda6d5d59a5299525506f833a76ebffed51c85b0407c46184d60b207055/uuid_utils-0.6.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "639963931b388695cbbf32a7bf55a46383f4ab7b387e955dc020f0772432227b",
                "md5": "c2f284d1e345918b51f7bab20c5b8310",
                "sha256": "61b7248ef11fbde99575f69b8f0890f2ebae867608e4b143557c47383227b122"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c2f284d1e345918b51f7bab20c5b8310",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1218213,
            "upload_time": "2023-11-06T09:40:07",
            "upload_time_iso_8601": "2023-11-06T09:40:07.183222Z",
            "url": "https://files.pythonhosted.org/packages/63/99/63931b388695cbbf32a7bf55a46383f4ab7b387e955dc020f0772432227b/uuid_utils-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f226b8f056ba83c1ff84b005d0c51a5624afe904bf8c14dd2011b7471a2301b",
                "md5": "6d4ba2b5e49c73bd0c99edb18b43373a",
                "sha256": "5a48565ab9819a41b73e0acb209167f9b6f4d9a5882be8169483a054745978d0"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6d4ba2b5e49c73bd0c99edb18b43373a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1216881,
            "upload_time": "2023-11-06T09:40:09",
            "upload_time_iso_8601": "2023-11-06T09:40:09.650803Z",
            "url": "https://files.pythonhosted.org/packages/0f/22/6b8f056ba83c1ff84b005d0c51a5624afe904bf8c14dd2011b7471a2301b/uuid_utils-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3944a38f1a1a6dfbb8b30e68910cb760d7859d68f77c68fc67e04eb57e790a92",
                "md5": "e78e1237a032ebd7debd2b0d57b34ca9",
                "sha256": "3d61dc071811d0fdac7d54f6c107f19a157d4177aee02e5eb47999d21403bf36"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e78e1237a032ebd7debd2b0d57b34ca9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1332139,
            "upload_time": "2023-11-06T09:40:11",
            "upload_time_iso_8601": "2023-11-06T09:40:11.831512Z",
            "url": "https://files.pythonhosted.org/packages/39/44/a38f1a1a6dfbb8b30e68910cb760d7859d68f77c68fc67e04eb57e790a92/uuid_utils-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdae82e7a2961e6b30e26051bb2b1b228a27a18e99ceb43dc89384d7439f86fe",
                "md5": "62524f9766a1412445a52862a47a13af",
                "sha256": "a5b5f6c455ce7451b1f2f2e6cb98fbef533834fd4cd0ce72e480de72b78ca55e"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "62524f9766a1412445a52862a47a13af",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1409844,
            "upload_time": "2023-11-06T09:40:14",
            "upload_time_iso_8601": "2023-11-06T09:40:14.011595Z",
            "url": "https://files.pythonhosted.org/packages/cd/ae/82e7a2961e6b30e26051bb2b1b228a27a18e99ceb43dc89384d7439f86fe/uuid_utils-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15acb8e0e517d25f41320b520e6139c8d835c11c9b04f0e552c98a773a6ce2aa",
                "md5": "2106ad27b9c9cfc9d43b365538bf9384",
                "sha256": "9de61dc9894825db15de8a11221793e3ded03c90b45064b55aca6a98359abb9e"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2106ad27b9c9cfc9d43b365538bf9384",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1224660,
            "upload_time": "2023-11-06T09:40:16",
            "upload_time_iso_8601": "2023-11-06T09:40:16.077222Z",
            "url": "https://files.pythonhosted.org/packages/15/ac/b8e0e517d25f41320b520e6139c8d835c11c9b04f0e552c98a773a6ce2aa/uuid_utils-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5918b79cd5502c5dc003ce0f59c19c9947d95c0ed1242ca27d043f8aad812cb9",
                "md5": "4da1c1fb9b202b36a97edabdafc3d5e6",
                "sha256": "156d50b001c99025ec6d5fd0c329dc2051b6ebf1685f56fe460d0954a46be700"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "4da1c1fb9b202b36a97edabdafc3d5e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1241195,
            "upload_time": "2023-11-06T09:40:18",
            "upload_time_iso_8601": "2023-11-06T09:40:18.547693Z",
            "url": "https://files.pythonhosted.org/packages/59/18/b79cd5502c5dc003ce0f59c19c9947d95c0ed1242ca27d043f8aad812cb9/uuid_utils-0.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "525621a6449c8946414e0fe81a55708d8ff06aa28342f5b6661044c6bebdaba3",
                "md5": "a5b85c04d482414fd5dc1f9fd16dca46",
                "sha256": "b5fa7264fd652a775a348e33b9c79a5762b2baf8d814fc402eb5e70ddd0113aa"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a5b85c04d482414fd5dc1f9fd16dca46",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1387836,
            "upload_time": "2023-11-06T09:40:20",
            "upload_time_iso_8601": "2023-11-06T09:40:20.654774Z",
            "url": "https://files.pythonhosted.org/packages/52/56/21a6449c8946414e0fe81a55708d8ff06aa28342f5b6661044c6bebdaba3/uuid_utils-0.6.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d03f6bf70645810274f49287c2b30895ee734ab660c9a582df7d54e147272fe5",
                "md5": "5bede897a9a8d49ca4fc7daa240fde66",
                "sha256": "4a23db2f3e231c3030876701202c85a9065eb8f1561d7372ac34e2dba7938112"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5bede897a9a8d49ca4fc7daa240fde66",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1401990,
            "upload_time": "2023-11-06T09:40:23",
            "upload_time_iso_8601": "2023-11-06T09:40:23.099724Z",
            "url": "https://files.pythonhosted.org/packages/d0/3f/6bf70645810274f49287c2b30895ee734ab660c9a582df7d54e147272fe5/uuid_utils-0.6.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88951d32be507bf69898669b944560a7a65cdb6f14ccc56265916ec092084236",
                "md5": "8f20d9c2ce92cfd94dca61df2d704c49",
                "sha256": "5612d507ba070ca0a00cd680a19f5de4401870b7eb63ccf547db3aefec2cc7b5"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f20d9c2ce92cfd94dca61df2d704c49",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1389410,
            "upload_time": "2023-11-06T09:40:25",
            "upload_time_iso_8601": "2023-11-06T09:40:25.735012Z",
            "url": "https://files.pythonhosted.org/packages/88/95/1d32be507bf69898669b944560a7a65cdb6f14ccc56265916ec092084236/uuid_utils-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffec4a11d2a37b9037709568b34a8065eec23fc828fb2f5b3119ef5613f9de0c",
                "md5": "0ea1c1d0b5a3db59c20cda057239915f",
                "sha256": "e8f842e171d606a00696d8a3d58731b0f5afea7ae75797b9b344e0eeaaf4138b"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "0ea1c1d0b5a3db59c20cda057239915f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 171894,
            "upload_time": "2023-11-06T09:40:28",
            "upload_time_iso_8601": "2023-11-06T09:40:28.026168Z",
            "url": "https://files.pythonhosted.org/packages/ff/ec/4a11d2a37b9037709568b34a8065eec23fc828fb2f5b3119ef5613f9de0c/uuid_utils-0.6.1-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01174c1e00135830e3ce3008637cfb71d9c43c720e40b8f8d7037b4d387180a2",
                "md5": "93096efdc3ef7cb406a098e79ddaaf0e",
                "sha256": "dbf295f9377f24e904d73cae179d2683fde3b261f0abd4ce0e8464e56d0db318"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "93096efdc3ef7cb406a098e79ddaaf0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 180765,
            "upload_time": "2023-11-06T09:40:29",
            "upload_time_iso_8601": "2023-11-06T09:40:29.902074Z",
            "url": "https://files.pythonhosted.org/packages/01/17/4c1e00135830e3ce3008637cfb71d9c43c720e40b8f8d7037b4d387180a2/uuid_utils-0.6.1-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d0b0823e738f801371bf849fce1cc1b04701edb99a741051b970b3187afe3a0",
                "md5": "4686ce1703fd9d0ed52feeb085be17bd",
                "sha256": "27c055f4dc7761dee4f957dc1f171cbb81686fc73ec5d117fb91d0fcbe3cff6d"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4686ce1703fd9d0ed52feeb085be17bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 332309,
            "upload_time": "2023-11-06T09:40:31",
            "upload_time_iso_8601": "2023-11-06T09:40:31.948142Z",
            "url": "https://files.pythonhosted.org/packages/5d/0b/0823e738f801371bf849fce1cc1b04701edb99a741051b970b3187afe3a0/uuid_utils-0.6.1-cp39-cp39-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8307b37ef7dbdf3f7b71990331a77a0c972601cde1e99a98104b0c3085538e82",
                "md5": "ab1fa4ef344a72949ecd0d4f9caed26f",
                "sha256": "2260eff817beca8b0c42cc7672f263518b23dd3d404647df64e19e15979eb851"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ab1fa4ef344a72949ecd0d4f9caed26f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 646180,
            "upload_time": "2023-11-06T09:40:33",
            "upload_time_iso_8601": "2023-11-06T09:40:33.843185Z",
            "url": "https://files.pythonhosted.org/packages/83/07/b37ef7dbdf3f7b71990331a77a0c972601cde1e99a98104b0c3085538e82/uuid_utils-0.6.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e28d1a9e84974a84c80d5d819e09706e4b2d6343f03289bed29210cc2e759abf",
                "md5": "b8f87f3b945b7ab62f1ca2e244d3ce1e",
                "sha256": "fa1b08136c49cd266bdbc2be45955b9677f9bc446c8898154b2c533583f8eec0"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b8f87f3b945b7ab62f1ca2e244d3ce1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1218248,
            "upload_time": "2023-11-06T09:40:36",
            "upload_time_iso_8601": "2023-11-06T09:40:36.004495Z",
            "url": "https://files.pythonhosted.org/packages/e2/8d/1a9e84974a84c80d5d819e09706e4b2d6343f03289bed29210cc2e759abf/uuid_utils-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9db739380096f7f5c9efdf3998be04b8fff94c94e83f0bda8e52ecae8cbb32d",
                "md5": "de375c9b0812da6369d74e6020c00159",
                "sha256": "6fc8eb73281b7a75ebda3a46dc551e819f28d721991c8f9c578ee0e181dda3db"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "de375c9b0812da6369d74e6020c00159",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1217142,
            "upload_time": "2023-11-06T09:40:38",
            "upload_time_iso_8601": "2023-11-06T09:40:38.067471Z",
            "url": "https://files.pythonhosted.org/packages/b9/db/739380096f7f5c9efdf3998be04b8fff94c94e83f0bda8e52ecae8cbb32d/uuid_utils-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90ae20f521623c4befa89d0cde7ff68c0f6a599b69ff0bfff9ca406ecb122a4c",
                "md5": "09a23d691daaf650e32f53ab99c275dc",
                "sha256": "8a98044852c87a5d8a15f77930141a985e71fff77c814e663a0be5665853385d"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "09a23d691daaf650e32f53ab99c275dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1329383,
            "upload_time": "2023-11-06T09:40:40",
            "upload_time_iso_8601": "2023-11-06T09:40:40.403561Z",
            "url": "https://files.pythonhosted.org/packages/90/ae/20f521623c4befa89d0cde7ff68c0f6a599b69ff0bfff9ca406ecb122a4c/uuid_utils-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5696d97aa805596196cc04021c43c104aeb3a7bb83739389cb7cc9a1ec99a37e",
                "md5": "0798544d8683d529b05f2b7f94169748",
                "sha256": "55cc859092c4312bde5ddba9f0dd887be006fb788c8e458d4facaf5636a6e216"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0798544d8683d529b05f2b7f94169748",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1409168,
            "upload_time": "2023-11-06T09:40:42",
            "upload_time_iso_8601": "2023-11-06T09:40:42.428143Z",
            "url": "https://files.pythonhosted.org/packages/56/96/d97aa805596196cc04021c43c104aeb3a7bb83739389cb7cc9a1ec99a37e/uuid_utils-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70d6e8ee6194b44e7c94c7ab99495bea73320f92d312cee6626e3e9e3ab04d43",
                "md5": "d81b5287c27192cdb210a1c6c6775dd8",
                "sha256": "ab3799c41eecabcf061e407098821b981cc17b2d6e5ecef46612595e0abf81a2"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d81b5287c27192cdb210a1c6c6775dd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1223568,
            "upload_time": "2023-11-06T09:40:44",
            "upload_time_iso_8601": "2023-11-06T09:40:44.691452Z",
            "url": "https://files.pythonhosted.org/packages/70/d6/e8ee6194b44e7c94c7ab99495bea73320f92d312cee6626e3e9e3ab04d43/uuid_utils-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d82bc2419c8be7ee38149bbd3185e556ce0d484cec7618b537f78479f11e39d",
                "md5": "7b8dc7ec15a2e5affff814f4f25172b9",
                "sha256": "58c0c0c77d97ee77c4a188482ad48169a8457cba6f4d24bf591649f8aac05b16"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7b8dc7ec15a2e5affff814f4f25172b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1240511,
            "upload_time": "2023-11-06T09:40:46",
            "upload_time_iso_8601": "2023-11-06T09:40:46.611816Z",
            "url": "https://files.pythonhosted.org/packages/6d/82/bc2419c8be7ee38149bbd3185e556ce0d484cec7618b537f78479f11e39d/uuid_utils-0.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27510678c1903f536bbba9117f0f350481d7ac80b4aaa2dbfa10805bc7655770",
                "md5": "6134acc6fad8d943a8ec61e4d780c369",
                "sha256": "af3afa0bb6d812bf5e7656b41ad9c9fae04f566c7c64bd36d68c4c94b743ffd2"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6134acc6fad8d943a8ec61e4d780c369",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1386187,
            "upload_time": "2023-11-06T09:40:48",
            "upload_time_iso_8601": "2023-11-06T09:40:48.610818Z",
            "url": "https://files.pythonhosted.org/packages/27/51/0678c1903f536bbba9117f0f350481d7ac80b4aaa2dbfa10805bc7655770/uuid_utils-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "426f81ac4b3f7b71e6d8103d593a2ffcbcb50c888be048ea3207b112b5675797",
                "md5": "6c9c78e15f69d82f0af182118c8235fc",
                "sha256": "e96a90b5a8707dfcff24067dd384ed0cf71624bdbaee3a85f16ac08d66ef4d1a"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6c9c78e15f69d82f0af182118c8235fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1401090,
            "upload_time": "2023-11-06T09:40:50",
            "upload_time_iso_8601": "2023-11-06T09:40:50.757627Z",
            "url": "https://files.pythonhosted.org/packages/42/6f/81ac4b3f7b71e6d8103d593a2ffcbcb50c888be048ea3207b112b5675797/uuid_utils-0.6.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92fdfc7b018327f768208d3eaab600a354d683e00366f3bfdea398f131e1dc63",
                "md5": "2bada8f20d2f5513c2b444b36fec4a74",
                "sha256": "3e6b805caaff1410bcd4e0fd34e814503a1374482d4bd82433e5abd7d728a8a6"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2bada8f20d2f5513c2b444b36fec4a74",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1388610,
            "upload_time": "2023-11-06T09:40:52",
            "upload_time_iso_8601": "2023-11-06T09:40:52.771455Z",
            "url": "https://files.pythonhosted.org/packages/92/fd/fc7b018327f768208d3eaab600a354d683e00366f3bfdea398f131e1dc63/uuid_utils-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "793c20c8df7cc43a27e943b59cf206b1a5ad5e74438a3af030b22ffb8e9fb511",
                "md5": "f5a2254deeabfe59e49c761326b25516",
                "sha256": "b5066e248eb78cf9a5668523cf0a0f762d3a35f0fb521f07c9b1eab3098b63d3"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f5a2254deeabfe59e49c761326b25516",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 172407,
            "upload_time": "2023-11-06T09:40:54",
            "upload_time_iso_8601": "2023-11-06T09:40:54.627753Z",
            "url": "https://files.pythonhosted.org/packages/79/3c/20c8df7cc43a27e943b59cf206b1a5ad5e74438a3af030b22ffb8e9fb511/uuid_utils-0.6.1-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a1e1635457697e0c61737864104caee2fda6b5e5c64c50b851b169ac5024e7f",
                "md5": "f2a13868ef7b3bd9799a04b16ec2f847",
                "sha256": "5b0d48d25d3cac01d75e27d82b1e4d271e3113cfa0469e793a1ca5b8267b6c22"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f2a13868ef7b3bd9799a04b16ec2f847",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 180769,
            "upload_time": "2023-11-06T09:40:56",
            "upload_time_iso_8601": "2023-11-06T09:40:56.437417Z",
            "url": "https://files.pythonhosted.org/packages/0a/1e/1635457697e0c61737864104caee2fda6b5e5c64c50b851b169ac5024e7f/uuid_utils-0.6.1-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2dfd67a96b4e9a07bb7c910554560fa0386d2c10ba868ea46e820e942498344c",
                "md5": "61af705d7249fab35c0558035b69116d",
                "sha256": "c4b975e4db70353c726f1eceb21342a48fb6bb1d092f7ca4ddf6dd247c618463"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61af705d7249fab35c0558035b69116d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 331608,
            "upload_time": "2023-11-06T09:40:58",
            "upload_time_iso_8601": "2023-11-06T09:40:58.465008Z",
            "url": "https://files.pythonhosted.org/packages/2d/fd/67a96b4e9a07bb7c910554560fa0386d2c10ba868ea46e820e942498344c/uuid_utils-0.6.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b0ca883068e0f216e2185d6dfb5d041665dd1a15e115e5303431c8e319810c8",
                "md5": "4d402937097db08742467c99185ae46f",
                "sha256": "f46a463fd2cc90064d911d71e6f12ab014aff7ff5658f2b26b7bbe64884f7734"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4d402937097db08742467c99185ae46f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 645242,
            "upload_time": "2023-11-06T09:41:00",
            "upload_time_iso_8601": "2023-11-06T09:41:00.735033Z",
            "url": "https://files.pythonhosted.org/packages/8b/0c/a883068e0f216e2185d6dfb5d041665dd1a15e115e5303431c8e319810c8/uuid_utils-0.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f05ca3695c53cc1cc265b6fe0aa415043a58929f2312afa49c243e1260f8c81f",
                "md5": "92e0aac7fab7c9cc65a3620d9745190e",
                "sha256": "a93ac0cdd45060ebd3e27bd7209bd6e7d0aaa9895bc13dda9e17e67dbdb8d1fd"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92e0aac7fab7c9cc65a3620d9745190e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1218038,
            "upload_time": "2023-11-06T09:41:03",
            "upload_time_iso_8601": "2023-11-06T09:41:03.531536Z",
            "url": "https://files.pythonhosted.org/packages/f0/5c/a3695c53cc1cc265b6fe0aa415043a58929f2312afa49c243e1260f8c81f/uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7149ca4edff65f103c30b3c75fd9b20b067561a95b3543934782d9ecd7bf8423",
                "md5": "bb8d19f56c103960ec0864a6dfe30345",
                "sha256": "cde866cb10d9fa23e8017705c9face45cb299bfdc7933f2bf4f6ec80fa09e2fd"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bb8d19f56c103960ec0864a6dfe30345",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1221143,
            "upload_time": "2023-11-06T09:41:05",
            "upload_time_iso_8601": "2023-11-06T09:41:05.591320Z",
            "url": "https://files.pythonhosted.org/packages/71/49/ca4edff65f103c30b3c75fd9b20b067561a95b3543934782d9ecd7bf8423/uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb63873fda8492a5f24a907cf0c218aeb17d5579d44a0a2f237ed5c05d4a98e4",
                "md5": "914856d1f02463a06deb11041fa4d767",
                "sha256": "fd3fe021fae8d2bda4c334288a818486fd7ebd567cce6abece9a55e335d95770"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "914856d1f02463a06deb11041fa4d767",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1330915,
            "upload_time": "2023-11-06T09:41:07",
            "upload_time_iso_8601": "2023-11-06T09:41:07.612310Z",
            "url": "https://files.pythonhosted.org/packages/eb/63/873fda8492a5f24a907cf0c218aeb17d5579d44a0a2f237ed5c05d4a98e4/uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "033ac6a1f109272d1805917b63f47930a73ee498c398e475090337cc695625a0",
                "md5": "8bdfbe0a3da0661034989fd5aa75700b",
                "sha256": "e270541449515af7eb29c8c7cdc71b6bb8b5ab9af060e10172637e5e978cd6d3"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8bdfbe0a3da0661034989fd5aa75700b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1409598,
            "upload_time": "2023-11-06T09:41:09",
            "upload_time_iso_8601": "2023-11-06T09:41:09.559817Z",
            "url": "https://files.pythonhosted.org/packages/03/3a/c6a1f109272d1805917b63f47930a73ee498c398e475090337cc695625a0/uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41f73d6f17c1371fd7be3c8994578a799c8b7c79fa2a178f3c77f4b5175e328e",
                "md5": "8e5d2b6b058390fd8bad5e05c36b1181",
                "sha256": "cb492c64708aaeb92c3a55e01371235e5f56ea58282f6acc11302d7bb351b067"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e5d2b6b058390fd8bad5e05c36b1181",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1222315,
            "upload_time": "2023-11-06T09:41:11",
            "upload_time_iso_8601": "2023-11-06T09:41:11.704483Z",
            "url": "https://files.pythonhosted.org/packages/41/f7/3d6f17c1371fd7be3c8994578a799c8b7c79fa2a178f3c77f4b5175e328e/uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ecc4d345271b950af73bac575f5bac66a4521f6b5e9e078fc5bcc749e3896ce",
                "md5": "b09f4d30e57e41532b03959c0fb72f0a",
                "sha256": "efe38551c980cbc20fff18cfa940feeac3e7c81f661aa2e9c26af1ffc477bd90"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b09f4d30e57e41532b03959c0fb72f0a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1240169,
            "upload_time": "2023-11-06T09:41:14",
            "upload_time_iso_8601": "2023-11-06T09:41:14.062868Z",
            "url": "https://files.pythonhosted.org/packages/2e/cc/4d345271b950af73bac575f5bac66a4521f6b5e9e078fc5bcc749e3896ce/uuid_utils-0.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26d24cfb49a91330073f786a91ed03631660e65976c11781016010d15940bfea",
                "md5": "1084bcb43cf9ca89a1896e4885e218c7",
                "sha256": "94bd7c36f269d79d7c12df11fbda93e3d7e629a2fb41a49252a52d2ddc9f93e8"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1084bcb43cf9ca89a1896e4885e218c7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 180794,
            "upload_time": "2023-11-06T09:41:15",
            "upload_time_iso_8601": "2023-11-06T09:41:15.788766Z",
            "url": "https://files.pythonhosted.org/packages/26/d2/4cfb49a91330073f786a91ed03631660e65976c11781016010d15940bfea/uuid_utils-0.6.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a41975844b785a008ec5685685f2c22674e3ea51e62720e74af14dc31418acc",
                "md5": "8bf07eb0dd7c13104d1d344267616af1",
                "sha256": "8d4c8cf303751a3cb960a94a72f2498b24c09641c571957e4c18bcf89ba10c55"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8bf07eb0dd7c13104d1d344267616af1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 331688,
            "upload_time": "2023-11-06T09:41:17",
            "upload_time_iso_8601": "2023-11-06T09:41:17.587195Z",
            "url": "https://files.pythonhosted.org/packages/1a/41/975844b785a008ec5685685f2c22674e3ea51e62720e74af14dc31418acc/uuid_utils-0.6.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "897ef2cb4667f6af618ffdbb57304ea7a3c99fe67d4978d302cb6f6a1959a8d1",
                "md5": "c32de40e0b73b8a43a1748cbc9dfa32b",
                "sha256": "b1a0fb9f01d08cd9d73a92c1701166fee1efcf02f286e62c84f71b34629450af"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c32de40e0b73b8a43a1748cbc9dfa32b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 645238,
            "upload_time": "2023-11-06T09:41:19",
            "upload_time_iso_8601": "2023-11-06T09:41:19.460254Z",
            "url": "https://files.pythonhosted.org/packages/89/7e/f2cb4667f6af618ffdbb57304ea7a3c99fe67d4978d302cb6f6a1959a8d1/uuid_utils-0.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ad095e6af9142f24c97459c22404ead2a15f09b4fe34a38e64d29c5d8038a19",
                "md5": "7b76fc9f783aee3eb13c1b1982c87a3b",
                "sha256": "b38ce277c5a667e0409ada7ee2c4e676828aa76312e245a335c8541b19e0e12b"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7b76fc9f783aee3eb13c1b1982c87a3b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1217634,
            "upload_time": "2023-11-06T09:41:22",
            "upload_time_iso_8601": "2023-11-06T09:41:22.143699Z",
            "url": "https://files.pythonhosted.org/packages/7a/d0/95e6af9142f24c97459c22404ead2a15f09b4fe34a38e64d29c5d8038a19/uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a887de2e69b281860c4ce729bb6eb562f44fab3c4d54f149c77cecf313d2b69",
                "md5": "a12cd8eab2e8d6cc6e2d060fd7510462",
                "sha256": "261adae1180a022c5affad783ea84e35cd95877a66c92a88619bf9f11fb56cc1"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a12cd8eab2e8d6cc6e2d060fd7510462",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1216948,
            "upload_time": "2023-11-06T09:41:24",
            "upload_time_iso_8601": "2023-11-06T09:41:24.654367Z",
            "url": "https://files.pythonhosted.org/packages/0a/88/7de2e69b281860c4ce729bb6eb562f44fab3c4d54f149c77cecf313d2b69/uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c5479b9bc014f3d73f321b3549497b1651b008c8e37eaa855fb0e05a83627ff",
                "md5": "685be328b8a6e4563e185176705a540d",
                "sha256": "1568afbd912b1c47c6c9d6d795bf1ff36967d7581c2308dd1a55cacb64ef9cd2"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "685be328b8a6e4563e185176705a540d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1333910,
            "upload_time": "2023-11-06T09:41:27",
            "upload_time_iso_8601": "2023-11-06T09:41:27.070640Z",
            "url": "https://files.pythonhosted.org/packages/5c/54/79b9bc014f3d73f321b3549497b1651b008c8e37eaa855fb0e05a83627ff/uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77c61ab435d65c2dcf6ea2198451dbf7a42ab4328f69e00578629ae2d90fb770",
                "md5": "f4d3d678ed8470e348d04bc02418fd2b",
                "sha256": "dfe2c3fe17df1ba9ba16a7118a2300ae6295d27d2fdb8d5241c34c15af056b05"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f4d3d678ed8470e348d04bc02418fd2b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1409355,
            "upload_time": "2023-11-06T09:41:29",
            "upload_time_iso_8601": "2023-11-06T09:41:29.245322Z",
            "url": "https://files.pythonhosted.org/packages/77/c6/1ab435d65c2dcf6ea2198451dbf7a42ab4328f69e00578629ae2d90fb770/uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e72b7cd42485eddd7d0fb6bd1e04fbac5905aeb56a979882f98581a9d24ffb5",
                "md5": "e2464e23561be9a096f0aae362bd0197",
                "sha256": "beeae22dbaabd9521936bc0f443e20a0947f188e61b6b85a5b4db236a67b1406"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2464e23561be9a096f0aae362bd0197",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1226343,
            "upload_time": "2023-11-06T09:41:31",
            "upload_time_iso_8601": "2023-11-06T09:41:31.302158Z",
            "url": "https://files.pythonhosted.org/packages/7e/72/b7cd42485eddd7d0fb6bd1e04fbac5905aeb56a979882f98581a9d24ffb5/uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2669918af25e6e5a10576912805e26f0304ed4804fe5db4d71dd629c4626a0e5",
                "md5": "0c3a70c55a79b41d0c49ce1d2ad4897c",
                "sha256": "a59c608589f7fa4f61278d65a69bc59809dae7f245e4e7a636c36b65f137acf8"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0c3a70c55a79b41d0c49ce1d2ad4897c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1240401,
            "upload_time": "2023-11-06T09:41:33",
            "upload_time_iso_8601": "2023-11-06T09:41:33.414755Z",
            "url": "https://files.pythonhosted.org/packages/26/69/918af25e6e5a10576912805e26f0304ed4804fe5db4d71dd629c4626a0e5/uuid_utils-0.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f9ac721223e3befd1861fa3e9c0eda9914e5e28cf9a16f9947361f0cf5d8834",
                "md5": "b7420f893a3bcbcb74bd13faf5d19b49",
                "sha256": "15390e7c3bebd459f426bb45e7a30e0a08413f50952346c62902be535f7121e9"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b7420f893a3bcbcb74bd13faf5d19b49",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 180339,
            "upload_time": "2023-11-06T09:41:35",
            "upload_time_iso_8601": "2023-11-06T09:41:35.128985Z",
            "url": "https://files.pythonhosted.org/packages/0f/9a/c721223e3befd1861fa3e9c0eda9914e5e28cf9a16f9947361f0cf5d8834/uuid_utils-0.6.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1fede03054aaed25c64c328b211b16d3e34df6287822c1b11c2747841545c963",
                "md5": "62782da02216f54d3bacacecb85ae9dd",
                "sha256": "7e828735e8b84186e37ba0942f8873c29fb3d175eaeb5bb0b5ce7e10464e7858"
            },
            "downloads": -1,
            "filename": "uuid_utils-0.6.1.tar.gz",
            "has_sig": false,
            "md5_digest": "62782da02216f54d3bacacecb85ae9dd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 16911,
            "upload_time": "2023-11-06T09:41:37",
            "upload_time_iso_8601": "2023-11-06T09:41:37.033834Z",
            "url": "https://files.pythonhosted.org/packages/1f/ed/e03054aaed25c64c328b211b16d3e34df6287822c1b11c2747841545c963/uuid_utils-0.6.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-06 09:41:37",
    "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.14087s