ulid-rs-py


Nameulid-rs-py JSON
Version 0.2.1 PyPI version JSON
download
home_pagehttps://github.com/rp-libs/ulid-rs-py
SummaryUse rust ulid crate to rewrite python ulid library
upload_time2024-02-06 07:34:46
maintainer
docs_urlNone
authorvvanglro <vvanglro@gmail.com>
requires_python>=3.8
licenseMIT
keywords ulid
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ulid-rs-py

[![Package version](https://img.shields.io/pypi/v/ulid-rs-py?color=%2334D058&label=pypi%20package)](https://pypi.org/project/ulid-rs-py/)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/ulid-rs-py.svg?color=%2334D058)](https://pypi.org/project/ulid-rs-py/)

Python wrapper for Rust [ulid](https://github.com/dylanhart/ulid-rs) crate

---

## Installation

```bash
pip install ulid-rs-py
```

---

## Quickstart

```python
from datetime import datetime, timezone
from ulid import new, from_uuid, from_parts, from_timestamp, from_datetime, from_string, PyUlid

# Generate ulid
py_ulid: PyUlid = new()
print(py_ulid)
print(py_ulid.str())
print(py_ulid.bytes())
print(py_ulid.increment())
print(py_ulid.randomness())
print(py_ulid.timestamp())

# From string
str_value = "01H6D6M1HWY1KNND0FKB8PRR87"
py_ulid = from_string(str_value)
print(py_ulid.str())
assert py_ulid.str() == str_value
assert py_ulid.randomness() + 1 == py_ulid.increment().randomness()

# From uuid
uuid_value = "771a3bce-02e9-4428-a68e-b1e7e82b7f9f"
ulid_value = "3Q38XWW0Q98GMAD3NHWZM2PZWZ"
py_ulid = from_uuid(uuid_value)
print(py_ulid.str())
assert py_ulid.str() == ulid_value

# From timestamp
timestamp_value = datetime(2023, 7, 28).timestamp()
py_ulid = from_timestamp(timestamp_value)
print(py_ulid.str())
print(py_ulid.timestamp())
assert py_ulid.timestamp() == timestamp_value
print(py_ulid.randomness())

# From datetime
datetime_value = datetime(2023, 7, 28, hour=1, minute=20, tzinfo=timezone.utc)
py_ulid = from_datetime(datetime_value)
assert py_ulid.str()
assert py_ulid.datetime() == datetime(2023, 7, 28, hour=1, minute=20)
assert py_ulid.timestamp() == datetime_value.timestamp()

# From parts
datetime_value = datetime(2023, 7, 28)
py_ulid_tt = from_timestamp(datetime_value.timestamp())
py_ulid = from_parts(py_ulid_tt.timestamp(), py_ulid_tt.randomness())
assert py_ulid.str() == py_ulid_tt.str()

```

---

## Benchmarks
For details, see [benchmark](https://github.com/rp-libs/ulid-rs-py/blob/main/tests/benchmarks/README.md).


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rp-libs/ulid-rs-py",
    "name": "ulid-rs-py",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "ulid",
    "author": "vvanglro <vvanglro@gmail.com>",
    "author_email": "vvanglro <vvanglro@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/f6/59/b97c5c748deda936b887124a7ed0413080136d44cba82bf8b94ecd17712a/ulid_rs_py-0.2.1.tar.gz",
    "platform": null,
    "description": "# ulid-rs-py\n\n[![Package version](https://img.shields.io/pypi/v/ulid-rs-py?color=%2334D058&label=pypi%20package)](https://pypi.org/project/ulid-rs-py/)\n[![Supported Python versions](https://img.shields.io/pypi/pyversions/ulid-rs-py.svg?color=%2334D058)](https://pypi.org/project/ulid-rs-py/)\n\nPython wrapper for Rust [ulid](https://github.com/dylanhart/ulid-rs) crate\n\n---\n\n## Installation\n\n```bash\npip install ulid-rs-py\n```\n\n---\n\n## Quickstart\n\n```python\nfrom datetime import datetime, timezone\nfrom ulid import new, from_uuid, from_parts, from_timestamp, from_datetime, from_string, PyUlid\n\n# Generate ulid\npy_ulid: PyUlid = new()\nprint(py_ulid)\nprint(py_ulid.str())\nprint(py_ulid.bytes())\nprint(py_ulid.increment())\nprint(py_ulid.randomness())\nprint(py_ulid.timestamp())\n\n# From string\nstr_value = \"01H6D6M1HWY1KNND0FKB8PRR87\"\npy_ulid = from_string(str_value)\nprint(py_ulid.str())\nassert py_ulid.str() == str_value\nassert py_ulid.randomness() + 1 == py_ulid.increment().randomness()\n\n# From uuid\nuuid_value = \"771a3bce-02e9-4428-a68e-b1e7e82b7f9f\"\nulid_value = \"3Q38XWW0Q98GMAD3NHWZM2PZWZ\"\npy_ulid = from_uuid(uuid_value)\nprint(py_ulid.str())\nassert py_ulid.str() == ulid_value\n\n# From timestamp\ntimestamp_value = datetime(2023, 7, 28).timestamp()\npy_ulid = from_timestamp(timestamp_value)\nprint(py_ulid.str())\nprint(py_ulid.timestamp())\nassert py_ulid.timestamp() == timestamp_value\nprint(py_ulid.randomness())\n\n# From datetime\ndatetime_value = datetime(2023, 7, 28, hour=1, minute=20, tzinfo=timezone.utc)\npy_ulid = from_datetime(datetime_value)\nassert py_ulid.str()\nassert py_ulid.datetime() == datetime(2023, 7, 28, hour=1, minute=20)\nassert py_ulid.timestamp() == datetime_value.timestamp()\n\n# From parts\ndatetime_value = datetime(2023, 7, 28)\npy_ulid_tt = from_timestamp(datetime_value.timestamp())\npy_ulid = from_parts(py_ulid_tt.timestamp(), py_ulid_tt.randomness())\nassert py_ulid.str() == py_ulid_tt.str()\n\n```\n\n---\n\n## Benchmarks\nFor details, see [benchmark](https://github.com/rp-libs/ulid-rs-py/blob/main/tests/benchmarks/README.md).\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Use rust ulid crate to rewrite python ulid library",
    "version": "0.2.1",
    "project_urls": {
        "Funding": "https://github.com/rp-libs/ulid-rs-py",
        "Homepage": "https://github.com/rp-libs/ulid-rs-py",
        "Source": "https://github.com/rp-libs/ulid-rs-py"
    },
    "split_keywords": [
        "ulid"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4fa87f8fd25f1ac068509b08d78a2ca016033a57a2b5ff2031a7b342c6a8dbf3",
                "md5": "2aeff9ce062149cb4eb824e915567977",
                "sha256": "bb5129d2f1a9f562545d8362ecf9a5f15bb20d21576c0c33c6a6076a8ec33bec"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2aeff9ce062149cb4eb824e915567977",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 197308,
            "upload_time": "2024-02-06T07:33:24",
            "upload_time_iso_8601": "2024-02-06T07:33:24.298647Z",
            "url": "https://files.pythonhosted.org/packages/4f/a8/7f8fd25f1ac068509b08d78a2ca016033a57a2b5ff2031a7b342c6a8dbf3/ulid_rs_py-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a38e0281bcf4ed5b475959103be8fbe4b4648c12c2e322a40e16f35fd60e43e3",
                "md5": "a18f6606600b6a3dc7d0d64a21d7dd04",
                "sha256": "c7771b975fab7c95af15cc64dd73693472f1a3045793474ab4734fee8115a7a7"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a18f6606600b6a3dc7d0d64a21d7dd04",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 189537,
            "upload_time": "2024-02-06T07:33:26",
            "upload_time_iso_8601": "2024-02-06T07:33:26.174619Z",
            "url": "https://files.pythonhosted.org/packages/a3/8e/0281bcf4ed5b475959103be8fbe4b4648c12c2e322a40e16f35fd60e43e3/ulid_rs_py-0.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5f77df7666184e4ee215e519346a183d588e694f959db9e463614e49dec8db5",
                "md5": "48029df8f6048fe959523b90e957bdc7",
                "sha256": "ac109fd991f885f2fa238e864e09a438d03e3e64ea829f93f7d31561e182f865"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48029df8f6048fe959523b90e957bdc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 217984,
            "upload_time": "2024-02-06T07:33:27",
            "upload_time_iso_8601": "2024-02-06T07:33:27.481883Z",
            "url": "https://files.pythonhosted.org/packages/b5/f7/7df7666184e4ee215e519346a183d588e694f959db9e463614e49dec8db5/ulid_rs_py-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd8a96c5364ab9b45ef316a064c3f10688385b108967f095daeec6ba5eccfe8a",
                "md5": "0e0108187251cbaa028a32249b180376",
                "sha256": "a5c88034fb53a294de99aa3faa6ea33b0a99373c652df553c889d5fcd198f8dc"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e0108187251cbaa028a32249b180376",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 227639,
            "upload_time": "2024-02-06T07:33:29",
            "upload_time_iso_8601": "2024-02-06T07:33:29.217975Z",
            "url": "https://files.pythonhosted.org/packages/fd/8a/96c5364ab9b45ef316a064c3f10688385b108967f095daeec6ba5eccfe8a/ulid_rs_py-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9e2bbc529b84ccb6c0536f05f52c547c758b847da812a8073408454e0c882c0",
                "md5": "c3a64f8852d757ef2cffd0d767a172c9",
                "sha256": "1e25dbaf01ae31c006e0879715e8cc10ab4fabd8905349fbdb802915d7c2fd06"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c3a64f8852d757ef2cffd0d767a172c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 398803,
            "upload_time": "2024-02-06T07:33:31",
            "upload_time_iso_8601": "2024-02-06T07:33:31.026418Z",
            "url": "https://files.pythonhosted.org/packages/d9/e2/bbc529b84ccb6c0536f05f52c547c758b847da812a8073408454e0c882c0/ulid_rs_py-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7d2136842871210f58400e3576415dc6c91167fb49dca4f7c87e17300decace",
                "md5": "6dad6df52e606fc739ca1db09fa04e18",
                "sha256": "3c929c29f1108ab3d46b3aeeceb1e9b5216167d8f196a1f42f8c5eeb61f6698e"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6dad6df52e606fc739ca1db09fa04e18",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 400062,
            "upload_time": "2024-02-06T07:33:32",
            "upload_time_iso_8601": "2024-02-06T07:33:32.947548Z",
            "url": "https://files.pythonhosted.org/packages/a7/d2/136842871210f58400e3576415dc6c91167fb49dca4f7c87e17300decace/ulid_rs_py-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d14c7eb284a7891c962bfd037dcc51aa8e87d4b51645e1984c4ba524b3f65f8",
                "md5": "75e52d13da8ecf5492c5fc73ee0814f4",
                "sha256": "2b5904e7bfec91b48ad9fe9a376ee8b5176046512b5e0a7650fe4e2c4d03c308"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "75e52d13da8ecf5492c5fc73ee0814f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 126772,
            "upload_time": "2024-02-06T07:33:34",
            "upload_time_iso_8601": "2024-02-06T07:33:34.755029Z",
            "url": "https://files.pythonhosted.org/packages/4d/14/c7eb284a7891c962bfd037dcc51aa8e87d4b51645e1984c4ba524b3f65f8/ulid_rs_py-0.2.1-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3e61345dfd157e3873ee90f13ac56c2a78f386f719baca3f923a878ba3d4473",
                "md5": "accd25fac2e6a4d6a0e08f4b7c09faa0",
                "sha256": "09dd5dd53d7f3ec40250f83eb741018dea953ba577ad959089648e2731734b6f"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "accd25fac2e6a4d6a0e08f4b7c09faa0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 197375,
            "upload_time": "2024-02-06T07:33:36",
            "upload_time_iso_8601": "2024-02-06T07:33:36.438192Z",
            "url": "https://files.pythonhosted.org/packages/a3/e6/1345dfd157e3873ee90f13ac56c2a78f386f719baca3f923a878ba3d4473/ulid_rs_py-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "083ef39cae1fa74dece073bff089b631a7c8f30f4779d48a13b9eec27c4c680c",
                "md5": "b0d73e47447d52fa14a6314c334d75a2",
                "sha256": "7562acd94393cc8c98d0bfed85e5a7d6965da8faf900404d3f4ee266ed469287"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b0d73e47447d52fa14a6314c334d75a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 189517,
            "upload_time": "2024-02-06T07:33:38",
            "upload_time_iso_8601": "2024-02-06T07:33:38.080578Z",
            "url": "https://files.pythonhosted.org/packages/08/3e/f39cae1fa74dece073bff089b631a7c8f30f4779d48a13b9eec27c4c680c/ulid_rs_py-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6252836e4139ff83329a6668df0712ea6cd58a489704f993a7d4277b69889d2a",
                "md5": "e2d71c911e43bbc397b7b837a32ba152",
                "sha256": "8528d25035d517612ec6390e0c927b288a8f96d092e7d946189cdec30eb10a3a"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2d71c911e43bbc397b7b837a32ba152",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 217987,
            "upload_time": "2024-02-06T07:33:39",
            "upload_time_iso_8601": "2024-02-06T07:33:39.866567Z",
            "url": "https://files.pythonhosted.org/packages/62/52/836e4139ff83329a6668df0712ea6cd58a489704f993a7d4277b69889d2a/ulid_rs_py-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7afac3b1ce6f4ce5e9d3c1c96adf0234b721d7d3988a14373a5dcbb318788126",
                "md5": "f06605edb9804f28b3c27926069ebd58",
                "sha256": "a0453fb1bd99a2a8ac1e63ccd8066735aa2bde5740f513d255bc38850587b5c4"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f06605edb9804f28b3c27926069ebd58",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 227641,
            "upload_time": "2024-02-06T07:33:41",
            "upload_time_iso_8601": "2024-02-06T07:33:41.108705Z",
            "url": "https://files.pythonhosted.org/packages/7a/fa/c3b1ce6f4ce5e9d3c1c96adf0234b721d7d3988a14373a5dcbb318788126/ulid_rs_py-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e770aa96e8bfa51eb18d84abd1f3e5e828c67abee97b74ac250ee4c873fe549",
                "md5": "0fd67dba39ace03f0810a60e9bf67197",
                "sha256": "38cdaf3058428d32638a023c78735b56f3bdea0111d145407c863be522ce7c05"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0fd67dba39ace03f0810a60e9bf67197",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 398798,
            "upload_time": "2024-02-06T07:33:43",
            "upload_time_iso_8601": "2024-02-06T07:33:43.545666Z",
            "url": "https://files.pythonhosted.org/packages/9e/77/0aa96e8bfa51eb18d84abd1f3e5e828c67abee97b74ac250ee4c873fe549/ulid_rs_py-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fa61bbc5bddfcec0d35f144ebaad1a5bc029e67725d5486e2faa58d6d3fd32d",
                "md5": "d2494aaaea4913d9700f6d4794042a35",
                "sha256": "1b7bfc3a5608b1057901178f9c66890ffa35acc82a8fc4152c65f0a322166ef3"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2494aaaea4913d9700f6d4794042a35",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 400063,
            "upload_time": "2024-02-06T07:33:45",
            "upload_time_iso_8601": "2024-02-06T07:33:45.438245Z",
            "url": "https://files.pythonhosted.org/packages/6f/a6/1bbc5bddfcec0d35f144ebaad1a5bc029e67725d5486e2faa58d6d3fd32d/ulid_rs_py-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be497c9b6c13ad4def90b18a8a6f1ed946bc0ba1cec323a983bf5166ef164ac1",
                "md5": "a87973546bd5f20500048a111ada3546",
                "sha256": "bd82334a268e25905bca751159f0b425bfa666264617f0efb8aca0b851d9efe5"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a87973546bd5f20500048a111ada3546",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 126810,
            "upload_time": "2024-02-06T07:33:46",
            "upload_time_iso_8601": "2024-02-06T07:33:46.618700Z",
            "url": "https://files.pythonhosted.org/packages/be/49/7c9b6c13ad4def90b18a8a6f1ed946bc0ba1cec323a983bf5166ef164ac1/ulid_rs_py-0.2.1-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c4a18d8517b8773d4a2557a86c972a7fc7c8b0457141567be92ecacf550d284",
                "md5": "d96783df34323e9a3401b01bde6d1a7a",
                "sha256": "c55039c7dcc942c29166ceb8a0398224de9a0847a5fe1bcd2b72bd7ac7040c6c"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d96783df34323e9a3401b01bde6d1a7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 195763,
            "upload_time": "2024-02-06T07:33:48",
            "upload_time_iso_8601": "2024-02-06T07:33:48.269588Z",
            "url": "https://files.pythonhosted.org/packages/7c/4a/18d8517b8773d4a2557a86c972a7fc7c8b0457141567be92ecacf550d284/ulid_rs_py-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c5eb1f421667601a0f203194614ba067558fe5a0a5658111d0c30d3a0a247ca",
                "md5": "8bb98ebe5dfe5d07034d51fdf243879d",
                "sha256": "597b1e4ab45a23902caf0c1e05b5937d1426ef9d4154057490644a6ec385a224"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8bb98ebe5dfe5d07034d51fdf243879d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 188266,
            "upload_time": "2024-02-06T07:33:49",
            "upload_time_iso_8601": "2024-02-06T07:33:49.896218Z",
            "url": "https://files.pythonhosted.org/packages/2c/5e/b1f421667601a0f203194614ba067558fe5a0a5658111d0c30d3a0a247ca/ulid_rs_py-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3aee6861d6a98cccd5cb9899f14605c9f6a0a62b41a235b21ffd4cee8a10bcff",
                "md5": "21f5a7037200500012887279f3142ab6",
                "sha256": "f9b058a3d9f03934ffd6f3fe0f1bda169a98b11991ef897a664724a67baf2947"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21f5a7037200500012887279f3142ab6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 216828,
            "upload_time": "2024-02-06T07:33:51",
            "upload_time_iso_8601": "2024-02-06T07:33:51.733706Z",
            "url": "https://files.pythonhosted.org/packages/3a/ee/6861d6a98cccd5cb9899f14605c9f6a0a62b41a235b21ffd4cee8a10bcff/ulid_rs_py-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95597b132c1e790331530b2e7d756c3695720cf3141a30b76e292fa21a1e837d",
                "md5": "e21ec4861987923cb8791b7486c94e78",
                "sha256": "60640f93e292d6dcbc88322d343dd5921503856d3badb6c4f502f34aa10a296a"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e21ec4861987923cb8791b7486c94e78",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 226190,
            "upload_time": "2024-02-06T07:33:53",
            "upload_time_iso_8601": "2024-02-06T07:33:53.486692Z",
            "url": "https://files.pythonhosted.org/packages/95/59/7b132c1e790331530b2e7d756c3695720cf3141a30b76e292fa21a1e837d/ulid_rs_py-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9e158a21e319ba41b79574b87ca1aa2fc9c525873fdce2764b87d90159d8060",
                "md5": "09ee1da1fb995e2719606a82f1ed3edf",
                "sha256": "85f56a9fab1b191097d84d4304b2cca84d2d3ecdd75ea704113333177ce046f3"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "09ee1da1fb995e2719606a82f1ed3edf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 397500,
            "upload_time": "2024-02-06T07:33:54",
            "upload_time_iso_8601": "2024-02-06T07:33:54.832343Z",
            "url": "https://files.pythonhosted.org/packages/f9/e1/58a21e319ba41b79574b87ca1aa2fc9c525873fdce2764b87d90159d8060/ulid_rs_py-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8892046d056dba1da43359cf714334b31d4064933d6b5bcf0846b1fd43458a7c",
                "md5": "ef5be22556708ef4652771afb90f003a",
                "sha256": "ed35246a330f2f6aea69b8797808ba89d45bce04c298759e2c5e21cf3a532fa5"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef5be22556708ef4652771afb90f003a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 398649,
            "upload_time": "2024-02-06T07:33:56",
            "upload_time_iso_8601": "2024-02-06T07:33:56.735097Z",
            "url": "https://files.pythonhosted.org/packages/88/92/046d056dba1da43359cf714334b31d4064933d6b5bcf0846b1fd43458a7c/ulid_rs_py-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aabfe0674b03d4b52c41dcdaa621d64a39487f5639c4cad557fa9a90ed37768f",
                "md5": "8c7fdc5868cbc221669fe700d12e2017",
                "sha256": "505c57caf5b5f23d581b344f62790b06b1896a69ac076bb1f2580397fb4dc599"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8c7fdc5868cbc221669fe700d12e2017",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 125938,
            "upload_time": "2024-02-06T07:33:57",
            "upload_time_iso_8601": "2024-02-06T07:33:57.864928Z",
            "url": "https://files.pythonhosted.org/packages/aa/bf/e0674b03d4b52c41dcdaa621d64a39487f5639c4cad557fa9a90ed37768f/ulid_rs_py-0.2.1-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79499940cb478c9b310abd329188c18b1e898ac37235cd3fd46d2fb3cd444c0e",
                "md5": "8017df415be920da7e19987573061c58",
                "sha256": "315d4069639064f38b36bb2e818fba84ac3527f82405dfa946c005b9122cf2fa"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8017df415be920da7e19987573061c58",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 197392,
            "upload_time": "2024-02-06T07:33:59",
            "upload_time_iso_8601": "2024-02-06T07:33:59.663410Z",
            "url": "https://files.pythonhosted.org/packages/79/49/9940cb478c9b310abd329188c18b1e898ac37235cd3fd46d2fb3cd444c0e/ulid_rs_py-0.2.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4e079ec7f9096cc2aea0f0d24be77e3f6a2976e5d1cd4f6769ca15c76bdc4c4",
                "md5": "1a29253420b7372990abcd08e080b19b",
                "sha256": "a3b048dee3f5bcd9d8e8347f546b9bd027c4c68206b6e8932d879c80e24c72b1"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1a29253420b7372990abcd08e080b19b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 189497,
            "upload_time": "2024-02-06T07:34:00",
            "upload_time_iso_8601": "2024-02-06T07:34:00.939544Z",
            "url": "https://files.pythonhosted.org/packages/a4/e0/79ec7f9096cc2aea0f0d24be77e3f6a2976e5d1cd4f6769ca15c76bdc4c4/ulid_rs_py-0.2.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21673ef37af47fcdf5b53a324e65ad12e9aa1da21ff0f67fb6dcd0f67a5e7bc9",
                "md5": "5a212aa61b402b5f7b8963b72e86a9e6",
                "sha256": "67949951ae41d7addad559029419b101eb432af9f1f485e3b80fb43c4d4b221d"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5a212aa61b402b5f7b8963b72e86a9e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 218088,
            "upload_time": "2024-02-06T07:34:02",
            "upload_time_iso_8601": "2024-02-06T07:34:02.803175Z",
            "url": "https://files.pythonhosted.org/packages/21/67/3ef37af47fcdf5b53a324e65ad12e9aa1da21ff0f67fb6dcd0f67a5e7bc9/ulid_rs_py-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de71cad65f55d7539961fd5fc8f0e86cc8fdafe9662afb8060ce235e18a46675",
                "md5": "9e6256345d4874a886dbaba538b8d9f7",
                "sha256": "737faeea056aed3a7d38b7011481f193bcd8a90022429dfb4eaeaf298e819660"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e6256345d4874a886dbaba538b8d9f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 227824,
            "upload_time": "2024-02-06T07:34:04",
            "upload_time_iso_8601": "2024-02-06T07:34:04.032005Z",
            "url": "https://files.pythonhosted.org/packages/de/71/cad65f55d7539961fd5fc8f0e86cc8fdafe9662afb8060ce235e18a46675/ulid_rs_py-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bde053f2b07c35754c8699e613485d426b2f24afd79d153f078d9b6e4a68c52",
                "md5": "133c2a5ef97bac795cbb1f2cf04dded3",
                "sha256": "475272b72118db4196459a9b6f6845d3b4a599e2644948a99a9ea75948e9c5a4"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "133c2a5ef97bac795cbb1f2cf04dded3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 398882,
            "upload_time": "2024-02-06T07:34:05",
            "upload_time_iso_8601": "2024-02-06T07:34:05.421870Z",
            "url": "https://files.pythonhosted.org/packages/5b/de/053f2b07c35754c8699e613485d426b2f24afd79d153f078d9b6e4a68c52/ulid_rs_py-0.2.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87166920c4a45329d76dc6497ff1375e7f9c54fc1e45516de6b0d05fa3edd2e1",
                "md5": "122fdf9c133fbba4406de20b4f65f84c",
                "sha256": "1de3c2209e54d38750725219622ce2d24d51a1d7d9d4159f2c1d81fa27de1775"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "122fdf9c133fbba4406de20b4f65f84c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 400220,
            "upload_time": "2024-02-06T07:34:06",
            "upload_time_iso_8601": "2024-02-06T07:34:06.619926Z",
            "url": "https://files.pythonhosted.org/packages/87/16/6920c4a45329d76dc6497ff1375e7f9c54fc1e45516de6b0d05fa3edd2e1/ulid_rs_py-0.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e067c7dd10659a067079b76c3dafe53b8002995c5d8f4fda598351aff9a18e14",
                "md5": "ea525742106e2e06003fd613a894dfb2",
                "sha256": "2c47ef5120e0804dd966bfd6adf3722541b7bb8cf9101d47c60a0b97ff3cf218"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ea525742106e2e06003fd613a894dfb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 126782,
            "upload_time": "2024-02-06T07:34:08",
            "upload_time_iso_8601": "2024-02-06T07:34:08.426505Z",
            "url": "https://files.pythonhosted.org/packages/e0/67/c7dd10659a067079b76c3dafe53b8002995c5d8f4fda598351aff9a18e14/ulid_rs_py-0.2.1-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e624fd926b16b35a7d55d3de2ddb850fda614220423aa7b7b126756a2e7cc3bc",
                "md5": "83f9c457ee5e078bca38c9dc57edcd73",
                "sha256": "5af07cb559c91505e3c5f2de287d29f901e537bf7163f13810957ebef80fd84a"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83f9c457ee5e078bca38c9dc57edcd73",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 197535,
            "upload_time": "2024-02-06T07:34:10",
            "upload_time_iso_8601": "2024-02-06T07:34:10.154349Z",
            "url": "https://files.pythonhosted.org/packages/e6/24/fd926b16b35a7d55d3de2ddb850fda614220423aa7b7b126756a2e7cc3bc/ulid_rs_py-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33633784b2d97f4b0e2d1a1d7d95ba6d5192b37e6668be2476dca3d67812fbce",
                "md5": "b37a20bf13814ad9c2e7b6ed9ca28247",
                "sha256": "52a67a58464287318ad942cbc407eb119ca9e16949bfc22f670c882ecc002598"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b37a20bf13814ad9c2e7b6ed9ca28247",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 189653,
            "upload_time": "2024-02-06T07:34:11",
            "upload_time_iso_8601": "2024-02-06T07:34:11.379460Z",
            "url": "https://files.pythonhosted.org/packages/33/63/3784b2d97f4b0e2d1a1d7d95ba6d5192b37e6668be2476dca3d67812fbce/ulid_rs_py-0.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4ba2beba8e0fd8d0724e7dac9175b8362c55eca0e0e45af092a76d29f449202",
                "md5": "3e632edd79b76f57901eea0cdc1f52df",
                "sha256": "e143481d441dd184cb242331b2b098da1224d65aacf2d9b9ce136f5d097d4af1"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e632edd79b76f57901eea0cdc1f52df",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 218221,
            "upload_time": "2024-02-06T07:34:12",
            "upload_time_iso_8601": "2024-02-06T07:34:12.618802Z",
            "url": "https://files.pythonhosted.org/packages/a4/ba/2beba8e0fd8d0724e7dac9175b8362c55eca0e0e45af092a76d29f449202/ulid_rs_py-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96e7eefcb09639c3b77379a1cb6241181faf5a4860a2ffb7279a11713930acee",
                "md5": "be1cdc99f420c2ffe745da7acf37e3a1",
                "sha256": "a7412c9c6e91d4c4d9e228cb722da875388dfa3670fc9bf5c59abc97f867f850"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be1cdc99f420c2ffe745da7acf37e3a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 227840,
            "upload_time": "2024-02-06T07:34:13",
            "upload_time_iso_8601": "2024-02-06T07:34:13.807468Z",
            "url": "https://files.pythonhosted.org/packages/96/e7/eefcb09639c3b77379a1cb6241181faf5a4860a2ffb7279a11713930acee/ulid_rs_py-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eca8008b86fa84dbc7147923a8a8b3d954744952afb1c3a9fc5aa2605c074afd",
                "md5": "647616449793bbaa9db0bb421720b052",
                "sha256": "24b3250ebd78cb94a0def8208274c9d4c6f9a937de6dd229e77e6cce847aa6ed"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "647616449793bbaa9db0bb421720b052",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 398975,
            "upload_time": "2024-02-06T07:34:15",
            "upload_time_iso_8601": "2024-02-06T07:34:15.125781Z",
            "url": "https://files.pythonhosted.org/packages/ec/a8/008b86fa84dbc7147923a8a8b3d954744952afb1c3a9fc5aa2605c074afd/ulid_rs_py-0.2.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9950b1659389ba5eee8d0ef661d3f64a7cbaec5bb5183523517bfaa69b460731",
                "md5": "0a8ca6f20f3fa6d6b8aa53341455644a",
                "sha256": "89931fdf3314032a7a8dff647e7f19a89eb4341e3ca484325dfdf24c60c81076"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a8ca6f20f3fa6d6b8aa53341455644a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 400327,
            "upload_time": "2024-02-06T07:34:16",
            "upload_time_iso_8601": "2024-02-06T07:34:16.580343Z",
            "url": "https://files.pythonhosted.org/packages/99/50/b1659389ba5eee8d0ef661d3f64a7cbaec5bb5183523517bfaa69b460731/ulid_rs_py-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe78ed4519511ddbc970775381de1c1d112df9c0128d3603885764191baddda0",
                "md5": "81c7e2f0119cda93cfa5e784acae9f2a",
                "sha256": "43ebd0afaf05fdd3f456a12e1af73820a6d449f9293648d7ec2660ea5b83bdf0"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "81c7e2f0119cda93cfa5e784acae9f2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 127016,
            "upload_time": "2024-02-06T07:34:18",
            "upload_time_iso_8601": "2024-02-06T07:34:18.286645Z",
            "url": "https://files.pythonhosted.org/packages/fe/78/ed4519511ddbc970775381de1c1d112df9c0128d3603885764191baddda0/ulid_rs_py-0.2.1-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a25c01838382077aa14affffcb796f85c0e7cd85489d3f0148c3071fe827108",
                "md5": "788ffa44d079d0cc0dbd2bbc6d864be9",
                "sha256": "b8055c96874f6972140d295ac97cfd324f177d6ca3967891525716cd560a5c40"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "788ffa44d079d0cc0dbd2bbc6d864be9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 196657,
            "upload_time": "2024-02-06T07:34:19",
            "upload_time_iso_8601": "2024-02-06T07:34:19.406317Z",
            "url": "https://files.pythonhosted.org/packages/0a/25/c01838382077aa14affffcb796f85c0e7cd85489d3f0148c3071fe827108/ulid_rs_py-0.2.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2765a57e94ca576cbc87bbef2a61ac950d1dbeec5dee47dac7be98bd669dfea",
                "md5": "c44fbe20859afabfcdf56124ae680b51",
                "sha256": "a80f4bf33183e2588b730e2a7e70d0b26c7286e7652dbe4314133bfcc99ba7cc"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c44fbe20859afabfcdf56124ae680b51",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 189156,
            "upload_time": "2024-02-06T07:34:20",
            "upload_time_iso_8601": "2024-02-06T07:34:20.551706Z",
            "url": "https://files.pythonhosted.org/packages/c2/76/5a57e94ca576cbc87bbef2a61ac950d1dbeec5dee47dac7be98bd669dfea/ulid_rs_py-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69b857addbeb7f1432a40d2a49d709c1cf5f1125adad2946a62b8d2f9cda4ca3",
                "md5": "1aee7074c7bcc7756720d15f6bfd97fb",
                "sha256": "dd3a353174b04c54b0ee6d9b7a2cbcf85fb7e167a90c4f795d495612fc5e2f76"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1aee7074c7bcc7756720d15f6bfd97fb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 217086,
            "upload_time": "2024-02-06T07:34:21",
            "upload_time_iso_8601": "2024-02-06T07:34:21.778312Z",
            "url": "https://files.pythonhosted.org/packages/69/b8/57addbeb7f1432a40d2a49d709c1cf5f1125adad2946a62b8d2f9cda4ca3/ulid_rs_py-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b45c78217e7b588b03519c749f3359905195eef1ec6b93fb020e6fa87990dda7",
                "md5": "118b0925427ebc9e2818509b6da5ec9d",
                "sha256": "e8f7950f818517acd46b0d7e0de1aa9d9b64d356dedbb977b47ebaeca9133a81"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "118b0925427ebc9e2818509b6da5ec9d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 226723,
            "upload_time": "2024-02-06T07:34:22",
            "upload_time_iso_8601": "2024-02-06T07:34:22.975267Z",
            "url": "https://files.pythonhosted.org/packages/b4/5c/78217e7b588b03519c749f3359905195eef1ec6b93fb020e6fa87990dda7/ulid_rs_py-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "027a9aac00b813cca570a44eb53a539dcb0dec0e429be4e1eb74da3d7bb40395",
                "md5": "7f73cdf9b61a0ddd148dd48f589a65fd",
                "sha256": "cd3466ac7d2167efc518b8d0a95e8c286762bac7a2791d14fc12cb93716cde08"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f73cdf9b61a0ddd148dd48f589a65fd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 398184,
            "upload_time": "2024-02-06T07:34:24",
            "upload_time_iso_8601": "2024-02-06T07:34:24.891701Z",
            "url": "https://files.pythonhosted.org/packages/02/7a/9aac00b813cca570a44eb53a539dcb0dec0e429be4e1eb74da3d7bb40395/ulid_rs_py-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48e358355b553f5710b7f8f726c387ccb23e35a7d64caa26f55359fdb10c901d",
                "md5": "a0a6515442850a3ca7204788d9db9e52",
                "sha256": "7c1c18d38111ed9213f905b2fa26bba3ab1586581cde3b506b67719599fc8138"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0a6515442850a3ca7204788d9db9e52",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 399300,
            "upload_time": "2024-02-06T07:34:26",
            "upload_time_iso_8601": "2024-02-06T07:34:26.263870Z",
            "url": "https://files.pythonhosted.org/packages/48/e3/58355b553f5710b7f8f726c387ccb23e35a7d64caa26f55359fdb10c901d/ulid_rs_py-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1367db0cfdf010a5857d1fddd75cc58a86c256f586d9f1773d14e544d41d63c3",
                "md5": "58046abce5dc4bbffc4356b2d0707340",
                "sha256": "7b4e7940694e0d5dff6d0b1a7478c57ee06c436b29c4809897ed056185e4272b"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "58046abce5dc4bbffc4356b2d0707340",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 125958,
            "upload_time": "2024-02-06T07:34:27",
            "upload_time_iso_8601": "2024-02-06T07:34:27.667253Z",
            "url": "https://files.pythonhosted.org/packages/13/67/db0cfdf010a5857d1fddd75cc58a86c256f586d9f1773d14e544d41d63c3/ulid_rs_py-0.2.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b112ea1375f8db91d4a4a6b94ac678a89982fa75ba0daab6b110cd17dca86ce2",
                "md5": "4cb8659bb46efa2fba090ec4e68bf565",
                "sha256": "70393fe70268d6589d3a84a89bc18170d80139568909bc0c144aa2ae690d7775"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4cb8659bb46efa2fba090ec4e68bf565",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 217114,
            "upload_time": "2024-02-06T07:34:29",
            "upload_time_iso_8601": "2024-02-06T07:34:29.570934Z",
            "url": "https://files.pythonhosted.org/packages/b1/12/ea1375f8db91d4a4a6b94ac678a89982fa75ba0daab6b110cd17dca86ce2/ulid_rs_py-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98dc41f031dd3f2229d4fd0fbe0b2e207fafb350868bdf882fadd09cae46c2f6",
                "md5": "4046e5eb3a7e90c0c6d828f0171effb6",
                "sha256": "4e27bff9796271bc241ffde2c11ac8a96bec02afe9e4e77c7e39af61c538fbdd"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4046e5eb3a7e90c0c6d828f0171effb6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 226849,
            "upload_time": "2024-02-06T07:34:31",
            "upload_time_iso_8601": "2024-02-06T07:34:31.392908Z",
            "url": "https://files.pythonhosted.org/packages/98/dc/41f031dd3f2229d4fd0fbe0b2e207fafb350868bdf882fadd09cae46c2f6/ulid_rs_py-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76ee46869496b2ae0bee1a802e4ce6181ebca7750dc6dcbd395103f2ba89b171",
                "md5": "19acef43092fb2685f5dd6793bae3f1d",
                "sha256": "8d42a7a4dc4342e4dcb450f78b1d5fd6a7f054e373b8afc6cb224bf9580dfd89"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "19acef43092fb2685f5dd6793bae3f1d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 398193,
            "upload_time": "2024-02-06T07:34:33",
            "upload_time_iso_8601": "2024-02-06T07:34:33.408098Z",
            "url": "https://files.pythonhosted.org/packages/76/ee/46869496b2ae0bee1a802e4ce6181ebca7750dc6dcbd395103f2ba89b171/ulid_rs_py-0.2.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69f02ac8f7d4e166333725daf2c4f6f738c42cba074b02b0de7500506e9a7edd",
                "md5": "012ebcef875a16f94154df14ed17dabf",
                "sha256": "38407694f46c693290ff9e6ec799dd98b5dac187135409e0a51ae733eb6610d2"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "012ebcef875a16f94154df14ed17dabf",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 399376,
            "upload_time": "2024-02-06T07:34:34",
            "upload_time_iso_8601": "2024-02-06T07:34:34.803859Z",
            "url": "https://files.pythonhosted.org/packages/69/f0/2ac8f7d4e166333725daf2c4f6f738c42cba074b02b0de7500506e9a7edd/ulid_rs_py-0.2.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9b2998648c1da11538b7de759c743bc7dea7c0ef1dcc20aa01de6f47887d7ae",
                "md5": "04314781d8ad2ed33fc3f2601ea56db5",
                "sha256": "4d5d558e442a1b6f21498d4edb5319f6338b8b2d2a41f50cdacb2e56d6133951"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "04314781d8ad2ed33fc3f2601ea56db5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 125989,
            "upload_time": "2024-02-06T07:34:36",
            "upload_time_iso_8601": "2024-02-06T07:34:36.043413Z",
            "url": "https://files.pythonhosted.org/packages/a9/b2/998648c1da11538b7de759c743bc7dea7c0ef1dcc20aa01de6f47887d7ae/ulid_rs_py-0.2.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67cdb8f4dce4a321eb86672659930d1d6193df587fec889aaedfe15125b2ce80",
                "md5": "932f644030b101554a20bb284e37fd00",
                "sha256": "a8b6a93def8b54b1c0d50a3ca818f0003bd6b627f4a369c1a467aac35f76999f"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "932f644030b101554a20bb284e37fd00",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 196659,
            "upload_time": "2024-02-06T07:34:37",
            "upload_time_iso_8601": "2024-02-06T07:34:37.111376Z",
            "url": "https://files.pythonhosted.org/packages/67/cd/b8f4dce4a321eb86672659930d1d6193df587fec889aaedfe15125b2ce80/ulid_rs_py-0.2.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1f9ea548817ef3982db95e7a76d4a0cc373e15e1f88b7c0aa304e3e33fa8b1e",
                "md5": "f861bbfbd15d9e4bbdee4d2f6439d7e1",
                "sha256": "17194058a9013bdd68d70623365e2c60a02c10c02df408e049d98fe97a7b2e46"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f861bbfbd15d9e4bbdee4d2f6439d7e1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 189149,
            "upload_time": "2024-02-06T07:34:38",
            "upload_time_iso_8601": "2024-02-06T07:34:38.927460Z",
            "url": "https://files.pythonhosted.org/packages/c1/f9/ea548817ef3982db95e7a76d4a0cc373e15e1f88b7c0aa304e3e33fa8b1e/ulid_rs_py-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "788ebe7e3230420f3ae94f9b6f6857830898def1a187f6abf275c3bed1ea0f9f",
                "md5": "0a4cd81a15a8d50197b7322a596999e7",
                "sha256": "f9e5d842c409edf25470902148e18ec0b0c559f7b8d802954f822c22edef5c10"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0a4cd81a15a8d50197b7322a596999e7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 217072,
            "upload_time": "2024-02-06T07:34:40",
            "upload_time_iso_8601": "2024-02-06T07:34:40.099030Z",
            "url": "https://files.pythonhosted.org/packages/78/8e/be7e3230420f3ae94f9b6f6857830898def1a187f6abf275c3bed1ea0f9f/ulid_rs_py-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9862d4afb4ff370aebecdbdb4be59621ffb6ab1f000bd5a0557cef39c25d1a16",
                "md5": "fbae4fb0b26b1c99d3a913e66a626e9f",
                "sha256": "68a1c274b911ca401a4bd8911b19524f11dea5accc02d84c49aecb82c367cf69"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbae4fb0b26b1c99d3a913e66a626e9f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 226712,
            "upload_time": "2024-02-06T07:34:41",
            "upload_time_iso_8601": "2024-02-06T07:34:41.975461Z",
            "url": "https://files.pythonhosted.org/packages/98/62/d4afb4ff370aebecdbdb4be59621ffb6ab1f000bd5a0557cef39c25d1a16/ulid_rs_py-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32bc71a325e183b010d13d1c440bcc40f47ead617bcf109cbf4bf8a546ac70e0",
                "md5": "ed27d85b1c4d4f61a4eb910b7a9c30ad",
                "sha256": "a93d1a391c9d503bae261f8c60396b6be9bc5df3863f9c4aa41b2d8ff56c6457"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ed27d85b1c4d4f61a4eb910b7a9c30ad",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 398184,
            "upload_time": "2024-02-06T07:34:43",
            "upload_time_iso_8601": "2024-02-06T07:34:43.231075Z",
            "url": "https://files.pythonhosted.org/packages/32/bc/71a325e183b010d13d1c440bcc40f47ead617bcf109cbf4bf8a546ac70e0/ulid_rs_py-0.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c45e4c084bb05b2e985e4dc7eeda4d2dec4ce1e3ede0fa87beeb9615996887b5",
                "md5": "da219f63760d5aa970a081b581355c21",
                "sha256": "19229397fde991696a1826481f93feeb9e9e11594e44989797e020f967dfd926"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da219f63760d5aa970a081b581355c21",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 399305,
            "upload_time": "2024-02-06T07:34:44",
            "upload_time_iso_8601": "2024-02-06T07:34:44.516970Z",
            "url": "https://files.pythonhosted.org/packages/c4/5e/4c084bb05b2e985e4dc7eeda4d2dec4ce1e3ede0fa87beeb9615996887b5/ulid_rs_py-0.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "280c1c28d8b23237110d1b24cc4342d345f91844eaf9509196c77746f96bc5ae",
                "md5": "81d75f704200f157d9d5f5c6dc7d7dd1",
                "sha256": "6c8966d63e7a3c583a39835f172f52b32b900d25f1e478ccdb61bb749528ea84"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "81d75f704200f157d9d5f5c6dc7d7dd1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 125941,
            "upload_time": "2024-02-06T07:34:45",
            "upload_time_iso_8601": "2024-02-06T07:34:45.747358Z",
            "url": "https://files.pythonhosted.org/packages/28/0c/1c28d8b23237110d1b24cc4342d345f91844eaf9509196c77746f96bc5ae/ulid_rs_py-0.2.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f659b97c5c748deda936b887124a7ed0413080136d44cba82bf8b94ecd17712a",
                "md5": "6d7be40a7e65a86a7e70d17fd41bb87d",
                "sha256": "cdc7e2750e9793cc9bbb1c855c0280329b4759094d037ea09e963d198a7f909f"
            },
            "downloads": -1,
            "filename": "ulid_rs_py-0.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "6d7be40a7e65a86a7e70d17fd41bb87d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 10067,
            "upload_time": "2024-02-06T07:34:46",
            "upload_time_iso_8601": "2024-02-06T07:34:46.996095Z",
            "url": "https://files.pythonhosted.org/packages/f6/59/b97c5c748deda936b887124a7ed0413080136d44cba82bf8b94ecd17712a/ulid_rs_py-0.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-06 07:34:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rp-libs",
    "github_project": "ulid-rs-py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ulid-rs-py"
}
        
Elapsed time: 0.16796s