rtoml


Namertoml JSON
Version 0.13.0 PyPI version JSON
download
home_pageNone
SummaryA TOML library for python implemented in rust.
upload_time2025-10-19 04:59:00
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # rtoml

[![Actions Status](https://github.com/samuelcolvin/rtoml/workflows/CI/badge.svg)](https://github.com/samuelcolvin/rtoml/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
[![Coverage](https://codecov.io/gh/samuelcolvin/rtoml/branch/main/graph/badge.svg)](https://codecov.io/gh/samuelcolvin/rtoml)
[![pypi](https://img.shields.io/pypi/v/rtoml.svg)](https://pypi.python.org/pypi/rtoml)
[![versions](https://img.shields.io/pypi/pyversions/rtoml.svg)](https://github.com/samuelcolvin/rtoml)
[![license](https://img.shields.io/github/license/samuelcolvin/rtoml.svg)](https://github.com/samuelcolvin/rtoml/blob/main/LICENSE)


A TOML library for python implemented in rust.

## Why Use rtoml

* Correctness: rtoml is based on the widely used and very stable [toml-rs](https://github.com/alexcrichton/toml-rs)
library, it passes all the [standard TOML tests](https://github.com/BurntSushi/toml-test) as well as having 100%
coverage on python code. Other TOML libraries for python I tried all failed to parse some valid TOML.
* Performance: see [github.com/pwwang/toml-bench](https://github.com/pwwang/toml-bench) -
  rtoml is the fastest Python TOML libraries at the time of writing.
* `None`-value handling: rtoml has flexible support for `None` values, instead of simply ignoring them.

## Install

Requires `python>=3.10`, binaries are available from PyPI for Linux, macOS and Windows,
see [here](https://pypi.org/project/rtoml/#files).

```bash
pip install rtoml
```

If no binary is available on pypi for you system configuration; you'll need rust stable
installed before you can install rtoml.

## Usage

#### load
```python
def load(toml: Union[str, Path, TextIO], *, none_value: Optional[str] = None) -> Dict[str, Any]: ...
```

Parse TOML via a string or file and return a python dictionary.

* `toml`: a `str`, `Path` or file object from `open()`.
* `none_value`: controlling which value in `toml` is loaded as `None` in python. By default, `none_value` is `None`, which means nothing is loaded as `None`

#### loads
```python
def loads(toml: str, *, none_value: Optional[str] = None) -> Dict[str, Any]: ...
```

Parse a TOML string and return a python dictionary. (provided to match the interface of `json` and similar libraries)

* `toml`: a `str` containing TOML.
* `none_value`: controlling which value in `toml` is loaded as `None` in python. By default, `none_value` is `None`, which means nothing is loaded as `None`

#### dumps
```python
def dumps(obj: Any, *, pretty: bool = False, none_value: Optional[str] = "null") -> str: ...
```

Serialize a python object to TOML.

* `obj`: a python object to be serialized.
* `pretty`: if `True` the output has a more "pretty" format.
* `none_value`: controlling how `None` values in `obj` are serialized. `none_value=None` means `None` values are ignored.

#### dump
```python
def dump(
    obj: Any, file: Union[Path, TextIO], *, pretty: bool = False, none_value: Optional[str] = "null"
) -> int: ...
```

Serialize a python object to TOML and write it to a file.

* `obj`: a python object to be serialized.
* `file`: a `Path` or file object from `open()`.
* `pretty`: if `True` the output has a more "pretty" format.
* `none_value`: controlling how `None` values in `obj` are serialized. `none_value=None` means `None` values are ignored.

### Examples

```py
from datetime import datetime, timezone, timedelta
import rtoml

obj = {
    'title': 'TOML Example',
    'owner': {
        'dob': datetime(1979, 5, 27, 7, 32, tzinfo=timezone(timedelta(hours=-8))),
        'name': 'Tom Preston-Werner',
    },
    'database': {
        'connection_max': 5000,
        'enabled': True,
        'ports': [8001, 8001, 8002],
        'server': '192.168.1.1',
    },
}

loaded_obj = rtoml.load("""\
# This is a TOML document.

title = "TOML Example"

[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00 # First class dates

[database]
server = "192.168.1.1"
ports = [8001, 8001, 8002]
connection_max = 5000
enabled = true
""")

assert loaded_obj == obj

assert rtoml.dumps(obj) == """\
title = "TOML Example"

[owner]
dob = 1979-05-27T07:32:00-08:00
name = "Tom Preston-Werner"

[database]
connection_max = 5000
enabled = true
server = "192.168.1.1"
ports = [8001, 8001, 8002]
"""
```

An example of `None`-value handling:

```python
obj = {
    'a': None,
    'b': 1,
    'c': [1, 2, None, 3],
}

# Ignore None values
assert rtoml.dumps(obj, none_value=None) == """\
b = 1
c = [1, 2, 3]
"""

# Serialize None values as '@None'
assert rtoml.dumps(obj, none_value='@None') == """\
a = "@None"
b = 1
c = [1, 2, "@None", 3]
"""

# Deserialize '@None' back to None
assert rtoml.load("""\
a = "@None"
b = 1
c = [1, 2, "@None", 3]
""", none_value='@None') == obj
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "rtoml",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Samuel Colvin <s@muelcolvin.com>",
    "download_url": "https://files.pythonhosted.org/packages/e9/11/2655729f675411fc82588d6cf598758a2339d56c5a2fa6eb89f3302ec484/rtoml-0.13.0.tar.gz",
    "platform": null,
    "description": "# rtoml\n\n[![Actions Status](https://github.com/samuelcolvin/rtoml/workflows/CI/badge.svg)](https://github.com/samuelcolvin/rtoml/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)\n[![Coverage](https://codecov.io/gh/samuelcolvin/rtoml/branch/main/graph/badge.svg)](https://codecov.io/gh/samuelcolvin/rtoml)\n[![pypi](https://img.shields.io/pypi/v/rtoml.svg)](https://pypi.python.org/pypi/rtoml)\n[![versions](https://img.shields.io/pypi/pyversions/rtoml.svg)](https://github.com/samuelcolvin/rtoml)\n[![license](https://img.shields.io/github/license/samuelcolvin/rtoml.svg)](https://github.com/samuelcolvin/rtoml/blob/main/LICENSE)\n\n\nA TOML library for python implemented in rust.\n\n## Why Use rtoml\n\n* Correctness: rtoml is based on the widely used and very stable [toml-rs](https://github.com/alexcrichton/toml-rs)\nlibrary, it passes all the [standard TOML tests](https://github.com/BurntSushi/toml-test) as well as having 100%\ncoverage on python code. Other TOML libraries for python I tried all failed to parse some valid TOML.\n* Performance: see [github.com/pwwang/toml-bench](https://github.com/pwwang/toml-bench) -\n  rtoml is the fastest Python TOML libraries at the time of writing.\n* `None`-value handling: rtoml has flexible support for `None` values, instead of simply ignoring them.\n\n## Install\n\nRequires `python>=3.10`, binaries are available from PyPI for Linux, macOS and Windows,\nsee [here](https://pypi.org/project/rtoml/#files).\n\n```bash\npip install rtoml\n```\n\nIf no binary is available on pypi for you system configuration; you'll need rust stable\ninstalled before you can install rtoml.\n\n## Usage\n\n#### load\n```python\ndef load(toml: Union[str, Path, TextIO], *, none_value: Optional[str] = None) -> Dict[str, Any]: ...\n```\n\nParse TOML via a string or file and return a python dictionary.\n\n* `toml`: a `str`, `Path` or file object from `open()`.\n* `none_value`: controlling which value in `toml` is loaded as `None` in python. By default, `none_value` is `None`, which means nothing is loaded as `None`\n\n#### loads\n```python\ndef loads(toml: str, *, none_value: Optional[str] = None) -> Dict[str, Any]: ...\n```\n\nParse a TOML string and return a python dictionary. (provided to match the interface of `json` and similar libraries)\n\n* `toml`: a `str` containing TOML.\n* `none_value`: controlling which value in `toml` is loaded as `None` in python. By default, `none_value` is `None`, which means nothing is loaded as `None`\n\n#### dumps\n```python\ndef dumps(obj: Any, *, pretty: bool = False, none_value: Optional[str] = \"null\") -> str: ...\n```\n\nSerialize a python object to TOML.\n\n* `obj`: a python object to be serialized.\n* `pretty`: if `True` the output has a more \"pretty\" format.\n* `none_value`: controlling how `None` values in `obj` are serialized. `none_value=None` means `None` values are ignored.\n\n#### dump\n```python\ndef dump(\n    obj: Any, file: Union[Path, TextIO], *, pretty: bool = False, none_value: Optional[str] = \"null\"\n) -> int: ...\n```\n\nSerialize a python object to TOML and write it to a file.\n\n* `obj`: a python object to be serialized.\n* `file`: a `Path` or file object from `open()`.\n* `pretty`: if `True` the output has a more \"pretty\" format.\n* `none_value`: controlling how `None` values in `obj` are serialized. `none_value=None` means `None` values are ignored.\n\n### Examples\n\n```py\nfrom datetime import datetime, timezone, timedelta\nimport rtoml\n\nobj = {\n    'title': 'TOML Example',\n    'owner': {\n        'dob': datetime(1979, 5, 27, 7, 32, tzinfo=timezone(timedelta(hours=-8))),\n        'name': 'Tom Preston-Werner',\n    },\n    'database': {\n        'connection_max': 5000,\n        'enabled': True,\n        'ports': [8001, 8001, 8002],\n        'server': '192.168.1.1',\n    },\n}\n\nloaded_obj = rtoml.load(\"\"\"\\\n# This is a TOML document.\n\ntitle = \"TOML Example\"\n\n[owner]\nname = \"Tom Preston-Werner\"\ndob = 1979-05-27T07:32:00-08:00 # First class dates\n\n[database]\nserver = \"192.168.1.1\"\nports = [8001, 8001, 8002]\nconnection_max = 5000\nenabled = true\n\"\"\")\n\nassert loaded_obj == obj\n\nassert rtoml.dumps(obj) == \"\"\"\\\ntitle = \"TOML Example\"\n\n[owner]\ndob = 1979-05-27T07:32:00-08:00\nname = \"Tom Preston-Werner\"\n\n[database]\nconnection_max = 5000\nenabled = true\nserver = \"192.168.1.1\"\nports = [8001, 8001, 8002]\n\"\"\"\n```\n\nAn example of `None`-value handling:\n\n```python\nobj = {\n    'a': None,\n    'b': 1,\n    'c': [1, 2, None, 3],\n}\n\n# Ignore None values\nassert rtoml.dumps(obj, none_value=None) == \"\"\"\\\nb = 1\nc = [1, 2, 3]\n\"\"\"\n\n# Serialize None values as '@None'\nassert rtoml.dumps(obj, none_value='@None') == \"\"\"\\\na = \"@None\"\nb = 1\nc = [1, 2, \"@None\", 3]\n\"\"\"\n\n# Deserialize '@None' back to None\nassert rtoml.load(\"\"\"\\\na = \"@None\"\nb = 1\nc = [1, 2, \"@None\", 3]\n\"\"\", none_value='@None') == obj\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A TOML library for python implemented in rust.",
    "version": "0.13.0",
    "project_urls": {
        "Funding": "https://github.com/sponsors/samuelcolvin",
        "Homepage": "https://github.com/samuelcolvin/rtoml",
        "Source": "https://github.com/samuelcolvin/rtoml"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fff4aa66904978c5a89c5b5ecb0296717d2ee00e96770e8fec142386143ae397",
                "md5": "ecee3435db4fe1810b6748fa4f7c57b7",
                "sha256": "eafa7371184cf88fd962986f019150e07f473387aabfe2bd5fb8fbb5d1a07802"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ecee3435db4fe1810b6748fa4f7c57b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 330013,
            "upload_time": "2025-10-19T04:57:52",
            "upload_time_iso_8601": "2025-10-19T04:57:52.487439Z",
            "url": "https://files.pythonhosted.org/packages/ff/f4/aa66904978c5a89c5b5ecb0296717d2ee00e96770e8fec142386143ae397/rtoml-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05bcd6569fe1bb8d3da9b195bf1e800874813dd4b1fb9897c5d7e8d95ce05bfa",
                "md5": "48b4103e91f9953fa0e55b20291bf045",
                "sha256": "85428686fb8b8f7958ec748ffa30f3de58dc6816df46178cbd8911b3cf39123a"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "48b4103e91f9953fa0e55b20291bf045",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 312504,
            "upload_time": "2025-10-19T04:57:53",
            "upload_time_iso_8601": "2025-10-19T04:57:53.942754Z",
            "url": "https://files.pythonhosted.org/packages/05/bc/d6569fe1bb8d3da9b195bf1e800874813dd4b1fb9897c5d7e8d95ce05bfa/rtoml-0.13.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74f9754462880f1e469bdc94756d91bc24c49356d861206785561095a33e6300",
                "md5": "dc4e1ac1322f2c0830969a4d8ba72c7d",
                "sha256": "ae8beee0988a650804b4fb9ec60b62ed8060ee57e643dad914fb797c6ef4e77f"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dc4e1ac1322f2c0830969a4d8ba72c7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 341921,
            "upload_time": "2025-10-19T04:57:54",
            "upload_time_iso_8601": "2025-10-19T04:57:54.854647Z",
            "url": "https://files.pythonhosted.org/packages/74/f9/754462880f1e469bdc94756d91bc24c49356d861206785561095a33e6300/rtoml-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "489591c46135ab6c18bbecdd208e41270d34d43c9fc3f872b84c66a270816c3b",
                "md5": "da3fb76eb17b8681b1cf8b6ec4bb2ea3",
                "sha256": "49be00b28d35da2b60067e0340d163fdb7bf30fc38bc904d7395e655b00f8400"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "da3fb76eb17b8681b1cf8b6ec4bb2ea3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 368407,
            "upload_time": "2025-10-19T04:57:56",
            "upload_time_iso_8601": "2025-10-19T04:57:56.147151Z",
            "url": "https://files.pythonhosted.org/packages/48/95/91c46135ab6c18bbecdd208e41270d34d43c9fc3f872b84c66a270816c3b/rtoml-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95d9902ac0df944268288abd2c76f468d8d2227506978170bd3eb9ce3f7e088a",
                "md5": "33d2dbaae7c021bc6ca1973dc69f1cf1",
                "sha256": "d780e33792d37b8195f7f559c720281b09ce3d3db3a37e464033ba193c2d07c9"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "33d2dbaae7c021bc6ca1973dc69f1cf1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 385428,
            "upload_time": "2025-10-19T04:57:57",
            "upload_time_iso_8601": "2025-10-19T04:57:57.422790Z",
            "url": "https://files.pythonhosted.org/packages/95/d9/902ac0df944268288abd2c76f468d8d2227506978170bd3eb9ce3f7e088a/rtoml-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a2ba5fa4a610949d9dc8dbe132b3289f4532fc9f4dcc450fead419f577bf70c",
                "md5": "67be308d169c4ac91198966aa128fb10",
                "sha256": "f0333ce68b4aeb18cccfaafcded3461a2c6c1ccca0d925e79df154061d914323"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "67be308d169c4ac91198966aa128fb10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 409638,
            "upload_time": "2025-10-19T04:57:58",
            "upload_time_iso_8601": "2025-10-19T04:57:58.689140Z",
            "url": "https://files.pythonhosted.org/packages/2a/2b/a5fa4a610949d9dc8dbe132b3289f4532fc9f4dcc450fead419f577bf70c/rtoml-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e72980405220c9eb55123ea25610d1484316d84589ae8f1ad5100050495c4e66",
                "md5": "0ffc494abb33eb06f3f292da134d2480",
                "sha256": "479b76b02e66985621b06856e090917e41114922a20dce12fc2fe8555c2305be"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ffc494abb33eb06f3f292da134d2480",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 348473,
            "upload_time": "2025-10-19T04:57:59",
            "upload_time_iso_8601": "2025-10-19T04:57:59.896988Z",
            "url": "https://files.pythonhosted.org/packages/e7/29/80405220c9eb55123ea25610d1484316d84589ae8f1ad5100050495c4e66/rtoml-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1050e2c51e7f3dc833202a796834bfaa7dd6190b7d92e11af7a86f4acba193bb",
                "md5": "94ce978e94c284cb86b6b2fa0e4b0920",
                "sha256": "a5b2543992cc16c33dd055dcd098b2cd8f6c13a444e635f6ca4f96a104431235"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "94ce978e94c284cb86b6b2fa0e4b0920",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 373971,
            "upload_time": "2025-10-19T04:58:01",
            "upload_time_iso_8601": "2025-10-19T04:58:01.144104Z",
            "url": "https://files.pythonhosted.org/packages/10/50/e2c51e7f3dc833202a796834bfaa7dd6190b7d92e11af7a86f4acba193bb/rtoml-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12a752562de250cceabd31ea1f8953ea0b06a7af245a5a0f88bfd6028397a926",
                "md5": "3c03fbb664ccebb0bbc93ef3c6e1637d",
                "sha256": "642ad0162120268a62007774a41ad62521cc657c75c6c6876faeb8bd0000fe38"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3c03fbb664ccebb0bbc93ef3c6e1637d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 522974,
            "upload_time": "2025-10-19T04:58:02",
            "upload_time_iso_8601": "2025-10-19T04:58:02.334027Z",
            "url": "https://files.pythonhosted.org/packages/12/a7/52562de250cceabd31ea1f8953ea0b06a7af245a5a0f88bfd6028397a926/rtoml-0.13.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "365c19b173ed23f6b273bfad223283287124993c7eaa39035481a9ce8491d656",
                "md5": "1d0e62781b0fb5624f170b3dd0a402f0",
                "sha256": "3bb30794ae9302f94cfba9b623332b4fa4a9a94f63a8bad84a3ef1b117ae4d7b"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d0e62781b0fb5624f170b3dd0a402f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 521045,
            "upload_time": "2025-10-19T04:58:03",
            "upload_time_iso_8601": "2025-10-19T04:58:03.769680Z",
            "url": "https://files.pythonhosted.org/packages/36/5c/19b173ed23f6b273bfad223283287124993c7eaa39035481a9ce8491d656/rtoml-0.13.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8788d01cfe97b75372dffc7d0ea6d18e844c1866655dfdd6ab2225e043b9f60",
                "md5": "adc904f868b664f0ff68d371faf64372",
                "sha256": "c328fb7d90420c9c75073012f9b44395ab595b139930034ddad2a561c536f9ad"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "adc904f868b664f0ff68d371faf64372",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 218508,
            "upload_time": "2025-10-19T04:58:05",
            "upload_time_iso_8601": "2025-10-19T04:58:05.005156Z",
            "url": "https://files.pythonhosted.org/packages/e8/78/8d01cfe97b75372dffc7d0ea6d18e844c1866655dfdd6ab2225e043b9f60/rtoml-0.13.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3edcaa869fdc88b2845d0c2a476cb967affedf4169eb581f570658e6d724fe14",
                "md5": "170e819c635692dd2579f12c810d4532",
                "sha256": "5f315170541dafcfc49cfde173e554b3be11a45f4052933fd9aff676946be72d"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "170e819c635692dd2579f12c810d4532",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 222032,
            "upload_time": "2025-10-19T04:58:06",
            "upload_time_iso_8601": "2025-10-19T04:58:06.179369Z",
            "url": "https://files.pythonhosted.org/packages/3e/dc/aa869fdc88b2845d0c2a476cb967affedf4169eb581f570658e6d724fe14/rtoml-0.13.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63ab6fb00e372b4b19d43884bc3c3f96491d7e88b0e4e29136434ec741e440ea",
                "md5": "24f7a10b043feea98dac068b6959de9f",
                "sha256": "59f53f569118409dca6089816f35b76b00548777e103ca8536eebb4fc899213c"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24f7a10b043feea98dac068b6959de9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 329879,
            "upload_time": "2025-10-19T04:58:07",
            "upload_time_iso_8601": "2025-10-19T04:58:07.432947Z",
            "url": "https://files.pythonhosted.org/packages/63/ab/6fb00e372b4b19d43884bc3c3f96491d7e88b0e4e29136434ec741e440ea/rtoml-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84d35f28a40798da5f882fb3402c85699d9b5bdd964ab19e683ce8b274230dc1",
                "md5": "97e74cf90a7226c36d2bb56bbfdac9ce",
                "sha256": "1292bbf888f75ded2599ec774fd404a9bd1b91ad5e08702c93c8b1ea8d297a94"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "97e74cf90a7226c36d2bb56bbfdac9ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 312516,
            "upload_time": "2025-10-19T04:58:08",
            "upload_time_iso_8601": "2025-10-19T04:58:08.670665Z",
            "url": "https://files.pythonhosted.org/packages/84/d3/5f28a40798da5f882fb3402c85699d9b5bdd964ab19e683ce8b274230dc1/rtoml-0.13.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6993bdb42940ab79c26eba0ec2c4480afb1e836d24bac647f4788c291089429b",
                "md5": "cc06ffa560e012f61ff3038ecc1d7a6d",
                "sha256": "0d94c29362722ef39b7455d54b1d845f3137c4c593d5619f3beac3c17dc54d8a"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cc06ffa560e012f61ff3038ecc1d7a6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 341565,
            "upload_time": "2025-10-19T04:58:09",
            "upload_time_iso_8601": "2025-10-19T04:58:09.580405Z",
            "url": "https://files.pythonhosted.org/packages/69/93/bdb42940ab79c26eba0ec2c4480afb1e836d24bac647f4788c291089429b/rtoml-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7dcd803a1f0d52f0d509c60a2aac389c21645a19bddbcde2f429cf7a107f33be",
                "md5": "ef1cd7910bc0fa5c6f934810463ace08",
                "sha256": "eae970f8613a4de80ce8f250e0c58a17b889fbf4a2de200820adb6de6add7e5f"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ef1cd7910bc0fa5c6f934810463ace08",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 367716,
            "upload_time": "2025-10-19T04:58:10",
            "upload_time_iso_8601": "2025-10-19T04:58:10.763445Z",
            "url": "https://files.pythonhosted.org/packages/7d/cd/803a1f0d52f0d509c60a2aac389c21645a19bddbcde2f429cf7a107f33be/rtoml-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1238b28b9cf5dd5ca83f3ac20572e199992700ee4609b68e79564e772fcca5bf",
                "md5": "06a690a3f946e89dba57e3135abf2c7e",
                "sha256": "4a5c0dfed4734f6738eee8f6459366ccb15d67bf0c1384e2675ae8285425f9fa"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "06a690a3f946e89dba57e3135abf2c7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 385403,
            "upload_time": "2025-10-19T04:58:12",
            "upload_time_iso_8601": "2025-10-19T04:58:12.058887Z",
            "url": "https://files.pythonhosted.org/packages/12/38/b28b9cf5dd5ca83f3ac20572e199992700ee4609b68e79564e772fcca5bf/rtoml-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f32c7516f7dc4c17ed7db2b5e4fd07d85bd793acd27d8841a31e0d922b2d0cd5",
                "md5": "71a4d3a8afc3df935bdcfd2f2e44439f",
                "sha256": "4cb9d95d72a9cba3abd3972cabafef32bf71a50bc4c04386f9ed1a8ee964761a"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "71a4d3a8afc3df935bdcfd2f2e44439f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 408978,
            "upload_time": "2025-10-19T04:58:13",
            "upload_time_iso_8601": "2025-10-19T04:58:13.104339Z",
            "url": "https://files.pythonhosted.org/packages/f3/2c/7516f7dc4c17ed7db2b5e4fd07d85bd793acd27d8841a31e0d922b2d0cd5/rtoml-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd7b0cb6c97ed0b51d0564eec7d7439b71de7cf2fe4aad13624822ca7b5ebba7",
                "md5": "e190d3358b7781ac816565dde849adae",
                "sha256": "ac04606ae7ffa744d07f0311bb45b3ffcef88c3fa7bb412c26be2c38209c2dbc"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e190d3358b7781ac816565dde849adae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 348401,
            "upload_time": "2025-10-19T04:58:14",
            "upload_time_iso_8601": "2025-10-19T04:58:14.385183Z",
            "url": "https://files.pythonhosted.org/packages/dd/7b/0cb6c97ed0b51d0564eec7d7439b71de7cf2fe4aad13624822ca7b5ebba7/rtoml-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1574e61795c25ad1b79af3ffc45b2e10e72015d75a387c1fc6c26df0b1a9dfd",
                "md5": "b80c1c9fadf399167fe69e4ffd3a60f1",
                "sha256": "d2f248c5e9a3a909a4ab3da79586da9753e4f4b3e5d5d085179dfb774a001399"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b80c1c9fadf399167fe69e4ffd3a60f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 374079,
            "upload_time": "2025-10-19T04:58:15",
            "upload_time_iso_8601": "2025-10-19T04:58:15.371545Z",
            "url": "https://files.pythonhosted.org/packages/f1/57/4e61795c25ad1b79af3ffc45b2e10e72015d75a387c1fc6c26df0b1a9dfd/rtoml-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "485365a0a5db95bf2467d394887e7569b5e16254c29aa8c386e0076b44f6ea2e",
                "md5": "c00bd155aed6d20316deb29c772ce047",
                "sha256": "813b26bf63abe4e901cc1a32d13ee8d2a7d69fcfa44ddd16c02d6a3cd35276f5"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c00bd155aed6d20316deb29c772ce047",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 522507,
            "upload_time": "2025-10-19T04:58:16",
            "upload_time_iso_8601": "2025-10-19T04:58:16.627735Z",
            "url": "https://files.pythonhosted.org/packages/48/53/65a0a5db95bf2467d394887e7569b5e16254c29aa8c386e0076b44f6ea2e/rtoml-0.13.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e909288b01db3607b2e4ef8a7e9ee2e592c85dd1a4150882884b61bb7e7cd69",
                "md5": "0674ed3dcba2fd8a83acb23a0f811e34",
                "sha256": "cfe6ed73740ba93f15c070fd8236efeb4d57d0bcc8852c73f25c5b9dd1b8e6ba"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0674ed3dcba2fd8a83acb23a0f811e34",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 521051,
            "upload_time": "2025-10-19T04:58:17",
            "upload_time_iso_8601": "2025-10-19T04:58:17.539407Z",
            "url": "https://files.pythonhosted.org/packages/4e/90/9288b01db3607b2e4ef8a7e9ee2e592c85dd1a4150882884b61bb7e7cd69/rtoml-0.13.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ce1cba48474cfdfbcfb412c7f11146756ab60094fc7bcc1e418052575e4a0e3",
                "md5": "9c8573e1d189e43ac7c2b31c98469f58",
                "sha256": "8e80308bcce3c10ec3928385fb1dcfeb3e8e4978d492b92d016fb88a65930b8d"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "9c8573e1d189e43ac7c2b31c98469f58",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 217897,
            "upload_time": "2025-10-19T04:58:18",
            "upload_time_iso_8601": "2025-10-19T04:58:18.879969Z",
            "url": "https://files.pythonhosted.org/packages/4c/e1/cba48474cfdfbcfb412c7f11146756ab60094fc7bcc1e418052575e4a0e3/rtoml-0.13.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aaff2843f09dfe4ef8788a51aa359e7b8e9525b0ce296c1a7ace152fbdfdbefb",
                "md5": "f5b9f3c9c8e9d3968ef38db2b37420bb",
                "sha256": "633a23a91b0ce5d4995a72342110ebbaa2b5963b78d4a27a2883406beb19709f"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5b9f3c9c8e9d3968ef38db2b37420bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 222029,
            "upload_time": "2025-10-19T04:58:19",
            "upload_time_iso_8601": "2025-10-19T04:58:19.711034Z",
            "url": "https://files.pythonhosted.org/packages/aa/ff/2843f09dfe4ef8788a51aa359e7b8e9525b0ce296c1a7ace152fbdfdbefb/rtoml-0.13.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03f23715769cef57307f55b302cad82395241fa14555e9e306b9cc2c6a1de6e5",
                "md5": "f064ef836ac7c618bb3a154a3e0ab8b4",
                "sha256": "5c874416441b7a7a3b3c321979fb778bd1482b550d1903d6821a4ddcfb5691bb"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "f064ef836ac7c618bb3a154a3e0ab8b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 212758,
            "upload_time": "2025-10-19T04:58:20",
            "upload_time_iso_8601": "2025-10-19T04:58:20.554931Z",
            "url": "https://files.pythonhosted.org/packages/03/f2/3715769cef57307f55b302cad82395241fa14555e9e306b9cc2c6a1de6e5/rtoml-0.13.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f1e835105f9953ff5a04f1332ff651a185d7c9fa5b333ca6557789621f0bce6",
                "md5": "0539538a109ee07b84f1a56eb9dafc30",
                "sha256": "e94c60ee00b6625c1e0f42d411edc8aa1c4fcf09c183347eb362a7b87e36f199"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0539538a109ee07b84f1a56eb9dafc30",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 329825,
            "upload_time": "2025-10-19T04:58:21",
            "upload_time_iso_8601": "2025-10-19T04:58:21.722329Z",
            "url": "https://files.pythonhosted.org/packages/5f/1e/835105f9953ff5a04f1332ff651a185d7c9fa5b333ca6557789621f0bce6/rtoml-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ada7bd910e8c9a4a8f8d3da8ad7e8c5c63b3227ad9704a04c765b1947c16982",
                "md5": "46b3dfd7ff86fba48755b5c17c6ed2d9",
                "sha256": "1e15f554e62b3b1661bd2ee5972f0a2d3dca925753481c6022b3f31d05634bb4"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "46b3dfd7ff86fba48755b5c17c6ed2d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 312637,
            "upload_time": "2025-10-19T04:58:22",
            "upload_time_iso_8601": "2025-10-19T04:58:22.578245Z",
            "url": "https://files.pythonhosted.org/packages/7a/da/7bd910e8c9a4a8f8d3da8ad7e8c5c63b3227ad9704a04c765b1947c16982/rtoml-0.13.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8da3529447a6b68c0df993845a82f6c64c0755dfa4ea8fc36873845df9b2217",
                "md5": "2b3150477b8061f584eb608430020955",
                "sha256": "f8a2d9c8234d245334765a89f65b0d934f403629423f70f30a688fc8194e8ed1"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2b3150477b8061f584eb608430020955",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 338019,
            "upload_time": "2025-10-19T04:58:23",
            "upload_time_iso_8601": "2025-10-19T04:58:23.414758Z",
            "url": "https://files.pythonhosted.org/packages/c8/da/3529447a6b68c0df993845a82f6c64c0755dfa4ea8fc36873845df9b2217/rtoml-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "888a9b85639084b018b012c821c5a530b5c025347dcadb7e5794b9b14bd9adc2",
                "md5": "86153daa9ff38a9e0faee13799cc700f",
                "sha256": "7fb0c9f266136a2072d082bc781e49c27422e740505788573ad9cdc58015f58e"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "86153daa9ff38a9e0faee13799cc700f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 366171,
            "upload_time": "2025-10-19T04:58:24",
            "upload_time_iso_8601": "2025-10-19T04:58:24.310041Z",
            "url": "https://files.pythonhosted.org/packages/88/8a/9b85639084b018b012c821c5a530b5c025347dcadb7e5794b9b14bd9adc2/rtoml-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27dd2d9348f6c77a9ec65449696bfd50a539e793b5b5595bd2e4036b6f0cf1fa",
                "md5": "0cafec3986f6e7cbc7e8871f43786a8d",
                "sha256": "2fe4a2443246b56e1fb25f298acb7f3d93da0623d52ef76dbfb2abeb0cfbdfaf"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0cafec3986f6e7cbc7e8871f43786a8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 382874,
            "upload_time": "2025-10-19T04:58:25",
            "upload_time_iso_8601": "2025-10-19T04:58:25.185542Z",
            "url": "https://files.pythonhosted.org/packages/27/dd/2d9348f6c77a9ec65449696bfd50a539e793b5b5595bd2e4036b6f0cf1fa/rtoml-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "638af350209d8b316a64a734d379cf62927222d58341d2b1665d1854a6bb2933",
                "md5": "a696df6c4d6f6c95b0414996e52a6b7d",
                "sha256": "f4a8896475cfb4ef68fd2dda2ad3aacecb6d9c40696e85f47ad8b18b8f003b42"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a696df6c4d6f6c95b0414996e52a6b7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 406552,
            "upload_time": "2025-10-19T04:58:26",
            "upload_time_iso_8601": "2025-10-19T04:58:26.057981Z",
            "url": "https://files.pythonhosted.org/packages/63/8a/f350209d8b316a64a734d379cf62927222d58341d2b1665d1854a6bb2933/rtoml-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68b4c1c51adca7b4cf364e80ba9f4c42be3fa95f3ddef6c022b97688addb441e",
                "md5": "d989f6317edb508f789f2347a584eb97",
                "sha256": "5a0939d03ce3dc5340645e0cb191e82d248dff5a77d6646139c5f9ac8531799d"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d989f6317edb508f789f2347a584eb97",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 346034,
            "upload_time": "2025-10-19T04:58:27",
            "upload_time_iso_8601": "2025-10-19T04:58:27.298815Z",
            "url": "https://files.pythonhosted.org/packages/68/b4/c1c51adca7b4cf364e80ba9f4c42be3fa95f3ddef6c022b97688addb441e/rtoml-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c74f3ce38a91e253bb671452ba3b1e11f74197e35318457e638aa3b4d59e06da",
                "md5": "cf21c7fa8aebfd74d6f593c54c1e8f15",
                "sha256": "763f8b86db927e1bb6e6d65c676a03c6431f1de1037ae896c3a0984353573547"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "cf21c7fa8aebfd74d6f593c54c1e8f15",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 372957,
            "upload_time": "2025-10-19T04:58:28",
            "upload_time_iso_8601": "2025-10-19T04:58:28.244979Z",
            "url": "https://files.pythonhosted.org/packages/c7/4f/3ce38a91e253bb671452ba3b1e11f74197e35318457e638aa3b4d59e06da/rtoml-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1958c4a1ddcc2402fe3b773ee55c03e002682b797297f1dcf5ea362d6ab0ae3e",
                "md5": "406258c768390b900ad1b8d020353035",
                "sha256": "ff2f38ffbd3c8bfdc60513ef8efdc732fa205bd53a45226559df5605cb1431d5"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "406258c768390b900ad1b8d020353035",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 519510,
            "upload_time": "2025-10-19T04:58:29",
            "upload_time_iso_8601": "2025-10-19T04:58:29.226309Z",
            "url": "https://files.pythonhosted.org/packages/19/58/c4a1ddcc2402fe3b773ee55c03e002682b797297f1dcf5ea362d6ab0ae3e/rtoml-0.13.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a031232dc261e35521a73000bf48e9c04451248d1ff9e668949e06549bb87c8",
                "md5": "72779589144dbbf09b2d0e69cb1975e1",
                "sha256": "ba2fbc1f1fa7bff8d722fd2539dc9962064b6193b90424625b2d4fe87726f945"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72779589144dbbf09b2d0e69cb1975e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 518664,
            "upload_time": "2025-10-19T04:58:30",
            "upload_time_iso_8601": "2025-10-19T04:58:30.257171Z",
            "url": "https://files.pythonhosted.org/packages/4a/03/1232dc261e35521a73000bf48e9c04451248d1ff9e668949e06549bb87c8/rtoml-0.13.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b465c853e1deab5cbc98564f43cde565e47793889d9c72ca24cf45fb1f637e6",
                "md5": "d4f1ac2e4a6f35e21c7c9cec92344e45",
                "sha256": "ed5120b56e568df8f297e7a8228b2f2c258daaee3af8b690584cbc0dce1d7f05"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d4f1ac2e4a6f35e21c7c9cec92344e45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 217896,
            "upload_time": "2025-10-19T04:58:31",
            "upload_time_iso_8601": "2025-10-19T04:58:31.125698Z",
            "url": "https://files.pythonhosted.org/packages/5b/46/5c853e1deab5cbc98564f43cde565e47793889d9c72ca24cf45fb1f637e6/rtoml-0.13.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8ec31ce0a96a0800c060bfbb61d243029f44baf1eb45c1469d70b1768f5b820",
                "md5": "d57a8e4b3eaff2ac827bfb5f18275711",
                "sha256": "1af5785c1f0119d523c77461de8c910e87f6254d3786f9768a8e16ec8250d42d"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d57a8e4b3eaff2ac827bfb5f18275711",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 222748,
            "upload_time": "2025-10-19T04:58:32",
            "upload_time_iso_8601": "2025-10-19T04:58:32.016165Z",
            "url": "https://files.pythonhosted.org/packages/e8/ec/31ce0a96a0800c060bfbb61d243029f44baf1eb45c1469d70b1768f5b820/rtoml-0.13.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0415b92baaf70147932b66a451b07a4cdd36e6d68a59cd6a47bce9c532acba11",
                "md5": "91aa35c2eca6fa5f24a522566e758cb1",
                "sha256": "564903f2ea90191ac172f89a47a3d6b7d633ff7e2ac92b82590924ad6e1452ba"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "91aa35c2eca6fa5f24a522566e758cb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 212862,
            "upload_time": "2025-10-19T04:58:32",
            "upload_time_iso_8601": "2025-10-19T04:58:32.942105Z",
            "url": "https://files.pythonhosted.org/packages/04/15/b92baaf70147932b66a451b07a4cdd36e6d68a59cd6a47bce9c532acba11/rtoml-0.13.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd28b186d539286bc52a4910e9b4202f6736dbf17188fbcf944f2710e188e759",
                "md5": "43204c5c111f76f01f3909b8388218ba",
                "sha256": "ad9988a3a4bd11e45d8cc2064c16397dfe6686cef18f2cfdeb7e93bdb2ca9775"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43204c5c111f76f01f3909b8388218ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 329464,
            "upload_time": "2025-10-19T04:58:33",
            "upload_time_iso_8601": "2025-10-19T04:58:33.796292Z",
            "url": "https://files.pythonhosted.org/packages/cd/28/b186d539286bc52a4910e9b4202f6736dbf17188fbcf944f2710e188e759/rtoml-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eca729d73c982280ad01f1fea647db551a1eebd5e62c05c000babee6bed9a546",
                "md5": "d3a2c61cc9a3cd9b1222a179bc5d41f4",
                "sha256": "44ef5f5deb6eb735b93074dd56e7039c3c4929055e91feb83e2032e4c2bd1665"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d3a2c61cc9a3cd9b1222a179bc5d41f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 312357,
            "upload_time": "2025-10-19T04:58:34",
            "upload_time_iso_8601": "2025-10-19T04:58:34.798761Z",
            "url": "https://files.pythonhosted.org/packages/ec/a7/29d73c982280ad01f1fea647db551a1eebd5e62c05c000babee6bed9a546/rtoml-0.13.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8518cf01d5e4a712cc61550abace74c5f5275a7a186c2b90f3437f6c2006dc0",
                "md5": "4538a826a8b79be1bd03e87b11b31f00",
                "sha256": "020fe78f7e53b9fef1762cd3734374baa506b225dd72ee7603242b11f33602c3"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4538a826a8b79be1bd03e87b11b31f00",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 337631,
            "upload_time": "2025-10-19T04:58:35",
            "upload_time_iso_8601": "2025-10-19T04:58:35.814527Z",
            "url": "https://files.pythonhosted.org/packages/c8/51/8cf01d5e4a712cc61550abace74c5f5275a7a186c2b90f3437f6c2006dc0/rtoml-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e96c2ace9dfe6e874db1de8f35cdb1926dd0a724e1569ffdba424252c0fb4f5",
                "md5": "4b07ccf67ec594958c9e841a3c0ece4e",
                "sha256": "1f4ceacdeab625f9585006976961f65165318d494f13f2cd114880576996f8ab"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4b07ccf67ec594958c9e841a3c0ece4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 365633,
            "upload_time": "2025-10-19T04:58:36",
            "upload_time_iso_8601": "2025-10-19T04:58:36.710110Z",
            "url": "https://files.pythonhosted.org/packages/2e/96/c2ace9dfe6e874db1de8f35cdb1926dd0a724e1569ffdba424252c0fb4f5/rtoml-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ff05ee0f7d0ebad5d0c332871807c0dc5b06b0ffd601582299e9fdb1be7bb8b",
                "md5": "28910849528c0afbe7d26756fafaed91",
                "sha256": "2823c41a3d0d019f3a0724e3a7c95439d6e034acc5251ed5c8129a5c8edcfb0a"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "28910849528c0afbe7d26756fafaed91",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 382393,
            "upload_time": "2025-10-19T04:58:37",
            "upload_time_iso_8601": "2025-10-19T04:58:37.952187Z",
            "url": "https://files.pythonhosted.org/packages/8f/f0/5ee0f7d0ebad5d0c332871807c0dc5b06b0ffd601582299e9fdb1be7bb8b/rtoml-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f62be028f2ba5942ed31a950d4e485328be49599e487a3773940dcd835bd1064",
                "md5": "b64bf16af45be68a7a671081a7cad717",
                "sha256": "e289dc70d1ad0a81266b0f85ffbbc2a0e3ab58c1aedbd2bd5f46cfd8d3da5afe"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b64bf16af45be68a7a671081a7cad717",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 406156,
            "upload_time": "2025-10-19T04:58:38",
            "upload_time_iso_8601": "2025-10-19T04:58:38.881277Z",
            "url": "https://files.pythonhosted.org/packages/f6/2b/e028f2ba5942ed31a950d4e485328be49599e487a3773940dcd835bd1064/rtoml-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a14e8e133c2fc6c758bcc067ed474c5c2d744c6a8f390b593b8cc1324f7a4cb7",
                "md5": "547d1ea6ecb5b7cba6a7dd8e024df4cc",
                "sha256": "0e904779134a2d9658edbdc58392a84f7a531620afdd2ded67a6bb792b2cfb86"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "547d1ea6ecb5b7cba6a7dd8e024df4cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 345467,
            "upload_time": "2025-10-19T04:58:39",
            "upload_time_iso_8601": "2025-10-19T04:58:39.770184Z",
            "url": "https://files.pythonhosted.org/packages/a1/4e/8e133c2fc6c758bcc067ed474c5c2d744c6a8f390b593b8cc1324f7a4cb7/rtoml-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98ca855bbb4d1ade53dca2098a9dc434527bfad5045e7595c3107ed2d14b7163",
                "md5": "604cb9586444002e695bc61185234b8a",
                "sha256": "956fcce8ec80ea59e32f85e8897cfaabd63a2a945aad1d9e439274ee71b9a6f6"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "604cb9586444002e695bc61185234b8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 372463,
            "upload_time": "2025-10-19T04:58:40",
            "upload_time_iso_8601": "2025-10-19T04:58:40.675543Z",
            "url": "https://files.pythonhosted.org/packages/98/ca/855bbb4d1ade53dca2098a9dc434527bfad5045e7595c3107ed2d14b7163/rtoml-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed993ebed5dd770526632c6d1ff4817b615a904c11ecb06093b65e6da5800d46",
                "md5": "f364993bc0eab4df2a7c0e3349708d3f",
                "sha256": "b756dc66682b89f3fa2dea3dc17d2acf7ca2af416ba7a36f19e97340f2b3ffa4"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f364993bc0eab4df2a7c0e3349708d3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 519179,
            "upload_time": "2025-10-19T04:58:41",
            "upload_time_iso_8601": "2025-10-19T04:58:41.629357Z",
            "url": "https://files.pythonhosted.org/packages/ed/99/3ebed5dd770526632c6d1ff4817b615a904c11ecb06093b65e6da5800d46/rtoml-0.13.0-cp313-cp313-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ee2515ed4000d5707893ec869c10783f0102ff1ec6e8c15b6fc94be804eb6eb",
                "md5": "39b76057fdcdb6802008e53d831c64b0",
                "sha256": "9fb0792ce87a49bb7ba8e9332854ca0b178c6f86462ae1142813b2b780875633"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39b76057fdcdb6802008e53d831c64b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 518145,
            "upload_time": "2025-10-19T04:58:42",
            "upload_time_iso_8601": "2025-10-19T04:58:42.618270Z",
            "url": "https://files.pythonhosted.org/packages/2e/e2/515ed4000d5707893ec869c10783f0102ff1ec6e8c15b6fc94be804eb6eb/rtoml-0.13.0-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd8b7848a5293b25975171d5b5b809f373150f10c3dae8311359a37948f34da2",
                "md5": "c7fc15a4bc3678b12d215c646fdea0f2",
                "sha256": "ad2e3e3accec89d112a431fa0991c9dd2f1ca5282e385a75f6697b5de6910ef9"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "c7fc15a4bc3678b12d215c646fdea0f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 217473,
            "upload_time": "2025-10-19T04:58:43",
            "upload_time_iso_8601": "2025-10-19T04:58:43.821310Z",
            "url": "https://files.pythonhosted.org/packages/dd/8b/7848a5293b25975171d5b5b809f373150f10c3dae8311359a37948f34da2/rtoml-0.13.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "244524391d1f58982494b898322ab230c5e7fc1020400ba303244fd5cc8eeb10",
                "md5": "fcdefb29cf38213e45bb4f4d681b8f5d",
                "sha256": "d7435f2b11384216461e2355a2795e67dc812d701f66890bd43680b6a8e365ce"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fcdefb29cf38213e45bb4f4d681b8f5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 222228,
            "upload_time": "2025-10-19T04:58:44",
            "upload_time_iso_8601": "2025-10-19T04:58:44.680264Z",
            "url": "https://files.pythonhosted.org/packages/24/45/24391d1f58982494b898322ab230c5e7fc1020400ba303244fd5cc8eeb10/rtoml-0.13.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "675eaec326eec687af0849ebc646d47b6adc5f575c6e1998d4cbd6f69d49935e",
                "md5": "d002f365de45576e7fb9c6a96e7d381f",
                "sha256": "0434e3d196375b82cfa5dc155cad6c78fd96c2cc6692e1d887505e1d99900986"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "d002f365de45576e7fb9c6a96e7d381f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 212406,
            "upload_time": "2025-10-19T04:58:45",
            "upload_time_iso_8601": "2025-10-19T04:58:45.923609Z",
            "url": "https://files.pythonhosted.org/packages/67/5e/aec326eec687af0849ebc646d47b6adc5f575c6e1998d4cbd6f69d49935e/rtoml-0.13.0-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "285107a144e0fd7fa0f2273a8a65e7ede19aa59ffac13b15c8344c462eaa0689",
                "md5": "ca98b7172f0b1b39aa771e4bed76d013",
                "sha256": "566f8f8e6dc2e965972b0d8f7c856e4920c443815e9d29a895ae04d588d9b48f"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca98b7172f0b1b39aa771e4bed76d013",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 329514,
            "upload_time": "2025-10-19T04:58:46",
            "upload_time_iso_8601": "2025-10-19T04:58:46.796522Z",
            "url": "https://files.pythonhosted.org/packages/28/51/07a144e0fd7fa0f2273a8a65e7ede19aa59ffac13b15c8344c462eaa0689/rtoml-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4b10205f688f83051457c1553fc152dc0617fe39acb2377cb0a657ff467a825",
                "md5": "799b07a60e54908347369c88f1c9e2dc",
                "sha256": "e5634d2079c8912958791973e0a4cfed311660286bfb6b14698294735ede7b7d"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "799b07a60e54908347369c88f1c9e2dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 312328,
            "upload_time": "2025-10-19T04:58:47",
            "upload_time_iso_8601": "2025-10-19T04:58:47.857119Z",
            "url": "https://files.pythonhosted.org/packages/b4/b1/0205f688f83051457c1553fc152dc0617fe39acb2377cb0a657ff467a825/rtoml-0.13.0-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8111b5205c03e7644b39112231a905691c9c24caab8bbeb08507e8e43a064c5",
                "md5": "8d4a5ed1bd302b2fc1ae9d8b6d4c94b7",
                "sha256": "18a141e0ea5ec8e0be88726d768956affe4a937b109421567cbd4dfdc5016d0c"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8d4a5ed1bd302b2fc1ae9d8b6d4c94b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 338687,
            "upload_time": "2025-10-19T04:58:49",
            "upload_time_iso_8601": "2025-10-19T04:58:49.028958Z",
            "url": "https://files.pythonhosted.org/packages/d8/11/1b5205c03e7644b39112231a905691c9c24caab8bbeb08507e8e43a064c5/rtoml-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38565709af9938727211b5883ad66b03a86b19b3d6544388115e4e39d506afc8",
                "md5": "df8dae41d8ebcd4e3f4aad8c5d46264f",
                "sha256": "55b003f31a87f49dd941d02aac84b7c4d8cfbd1dfcc80d7a6a71835c72ddd74f"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "df8dae41d8ebcd4e3f4aad8c5d46264f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 365670,
            "upload_time": "2025-10-19T04:58:49",
            "upload_time_iso_8601": "2025-10-19T04:58:49.988197Z",
            "url": "https://files.pythonhosted.org/packages/38/56/5709af9938727211b5883ad66b03a86b19b3d6544388115e4e39d506afc8/rtoml-0.13.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0da699fa1618beca99f62b5a156874eb5752fe51eb78e3f0363c9533d34fd9dc",
                "md5": "0dbc54c24ce3d2da66ddc65a9ad7170c",
                "sha256": "9c7ade406218833fbbc97ceca92050c02f4d724045770eb9020be1b3d97df455"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0dbc54c24ce3d2da66ddc65a9ad7170c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 382240,
            "upload_time": "2025-10-19T04:58:50",
            "upload_time_iso_8601": "2025-10-19T04:58:50.954763Z",
            "url": "https://files.pythonhosted.org/packages/0d/a6/99fa1618beca99f62b5a156874eb5752fe51eb78e3f0363c9533d34fd9dc/rtoml-0.13.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "880e23f7719656bdabeee1731b46443ea1d3aaecdde702142bcd7757a4ab75b2",
                "md5": "c44f5d5b602acecc4f17183794627e2d",
                "sha256": "c84d8b77cd0dbb5cf1da33846d5c5fd02536c06ab5ab560e90e4ca2920942b58"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c44f5d5b602acecc4f17183794627e2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 406158,
            "upload_time": "2025-10-19T04:58:51",
            "upload_time_iso_8601": "2025-10-19T04:58:51.925022Z",
            "url": "https://files.pythonhosted.org/packages/88/0e/23f7719656bdabeee1731b46443ea1d3aaecdde702142bcd7757a4ab75b2/rtoml-0.13.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "606607df2e5f99f17696a46fd6cbc5c9d279422b1652f0d130a122418ee077ea",
                "md5": "5041483a3e6fd9d45483a0f5e275d8fd",
                "sha256": "95a229595254449cbf0b2e396f1b444ed8a0c259f78bab505326bb2a1e4239ff"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5041483a3e6fd9d45483a0f5e275d8fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 345644,
            "upload_time": "2025-10-19T04:58:52",
            "upload_time_iso_8601": "2025-10-19T04:58:52.839709Z",
            "url": "https://files.pythonhosted.org/packages/60/66/07df2e5f99f17696a46fd6cbc5c9d279422b1652f0d130a122418ee077ea/rtoml-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83fc32efd575a5b1f6674675dd8ed181c7cca81fa315b8411df23f91251b2fd6",
                "md5": "eb88aa6b95c8f4c9401ac2bd499464a5",
                "sha256": "a3bf2a94df8bb22642fbd263b17aa6b7822384a756204c1da9ae05c4c5c749f9"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "eb88aa6b95c8f4c9401ac2bd499464a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 372629,
            "upload_time": "2025-10-19T04:58:53",
            "upload_time_iso_8601": "2025-10-19T04:58:53.846278Z",
            "url": "https://files.pythonhosted.org/packages/83/fc/32efd575a5b1f6674675dd8ed181c7cca81fa315b8411df23f91251b2fd6/rtoml-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77cae70ee8457ea07885b885848e07ac07590f9e70e8a57b564e2cb23583dcca",
                "md5": "719a2deef553fc2b30705068de30a7d6",
                "sha256": "8377affbcf36c4fc8360778015c82972b4d0134faacee426ec37e8e7afcf3855"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "719a2deef553fc2b30705068de30a7d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 519169,
            "upload_time": "2025-10-19T04:58:54",
            "upload_time_iso_8601": "2025-10-19T04:58:54.754736Z",
            "url": "https://files.pythonhosted.org/packages/77/ca/e70ee8457ea07885b885848e07ac07590f9e70e8a57b564e2cb23583dcca/rtoml-0.13.0-cp314-cp314-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa202eb6fab37a545902fe634318e33c1d2199ae4f3be3b522da1dc5f7563a74",
                "md5": "30169785b2b7c6548d912f577782b115",
                "sha256": "b844b95939cc4f7b88d99fc874a191957d218ecf057bdc381745ad58e953361b"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30169785b2b7c6548d912f577782b115",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 518186,
            "upload_time": "2025-10-19T04:58:55",
            "upload_time_iso_8601": "2025-10-19T04:58:55.705730Z",
            "url": "https://files.pythonhosted.org/packages/fa/20/2eb6fab37a545902fe634318e33c1d2199ae4f3be3b522da1dc5f7563a74/rtoml-0.13.0-cp314-cp314-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f21cf1251b42591aaab0feb2d9a4ab8c9c6f49511f2bae6fea175d7db4111f13",
                "md5": "a7acbf98f4fc7efa7693ea3149b4ba4d",
                "sha256": "cadb00e9a4d09832d2842ae18638d27103c992ccfbc5a702eb14b6b40e4e0ed9"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "a7acbf98f4fc7efa7693ea3149b4ba4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 217475,
            "upload_time": "2025-10-19T04:58:57",
            "upload_time_iso_8601": "2025-10-19T04:58:57.211281Z",
            "url": "https://files.pythonhosted.org/packages/f2/1c/f1251b42591aaab0feb2d9a4ab8c9c6f49511f2bae6fea175d7db4111f13/rtoml-0.13.0-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fce5db02ccd1aea7b17645b785b55c605c655959655f320f4fadfa1d293c914e",
                "md5": "839d6b557d512e883400bbaa920c0951",
                "sha256": "4f1c6fa1c31f2baabc1436e8b87997da2b960e61a5a4dac52f7f4e4ef7b6810c"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "839d6b557d512e883400bbaa920c0951",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 221608,
            "upload_time": "2025-10-19T04:58:58",
            "upload_time_iso_8601": "2025-10-19T04:58:58.070462Z",
            "url": "https://files.pythonhosted.org/packages/fc/e5/db02ccd1aea7b17645b785b55c605c655959655f320f4fadfa1d293c914e/rtoml-0.13.0-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a6348fd3207eb8f50566d871d86ea25cd86e4f2de2459229907e271272f58ac",
                "md5": "7d63d3ba886e6537cafe63d0d23348e1",
                "sha256": "f513e54f6788038bb6473564544b27cecd48dc2666fc066eb09f3759df4e3b42"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0-cp314-cp314-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "7d63d3ba886e6537cafe63d0d23348e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 211938,
            "upload_time": "2025-10-19T04:58:58",
            "upload_time_iso_8601": "2025-10-19T04:58:58.963932Z",
            "url": "https://files.pythonhosted.org/packages/7a/63/48fd3207eb8f50566d871d86ea25cd86e4f2de2459229907e271272f58ac/rtoml-0.13.0-cp314-cp314-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9112655729f675411fc82588d6cf598758a2339d56c5a2fa6eb89f3302ec484",
                "md5": "2b3bd020f6b9c4548dd9354a4ed28415",
                "sha256": "974522c887b47abc0bb62ee8ae9e44d3a0c2cdac9d60ba0ed01c5a40df0ea424"
            },
            "downloads": -1,
            "filename": "rtoml-0.13.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2b3bd020f6b9c4548dd9354a4ed28415",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 43171,
            "upload_time": "2025-10-19T04:59:00",
            "upload_time_iso_8601": "2025-10-19T04:59:00.262826Z",
            "url": "https://files.pythonhosted.org/packages/e9/11/2655729f675411fc82588d6cf598758a2339d56c5a2fa6eb89f3302ec484/rtoml-0.13.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-19 04:59:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sponsors",
    "github_project": "samuelcolvin",
    "github_not_found": true,
    "lcname": "rtoml"
}
        
Elapsed time: 4.74862s