# rtoml
[](https://github.com/samuelcolvin/rtoml/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
[](https://codecov.io/gh/samuelcolvin/rtoml)
[](https://pypi.python.org/pypi/rtoml)
[](https://github.com/samuelcolvin/rtoml)
[](https://github.com/samuelcolvin/rtoml/blob/main/LICENSE)
A better 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.9`, 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.9",
"maintainer_email": null,
"keywords": null,
"author": "Samuel Colvin <s@muelcolvin.com>",
"author_email": "Samuel Colvin <s@muelcolvin.com>",
"download_url": "https://files.pythonhosted.org/packages/87/93/59e1dc9829eafbfb349b1ff2dcfca647d7f7e7d87788de54ab0e402c7036/rtoml-0.12.0.tar.gz",
"platform": null,
"description": "# rtoml\n\n[](https://github.com/samuelcolvin/rtoml/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)\n[](https://codecov.io/gh/samuelcolvin/rtoml)\n[](https://pypi.python.org/pypi/rtoml)\n[](https://github.com/samuelcolvin/rtoml)\n[](https://github.com/samuelcolvin/rtoml/blob/main/LICENSE)\n\n\nA better 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.9`, 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": null,
"summary": null,
"version": "0.12.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": "",
"digests": {
"blake2b_256": "fade08dc63ef974b6720e1f6159a4d3b36f0cb40d2d1c4a6315ebdf0bbf78ef7",
"md5": "7dee8415a36f14cb99b74ca870d1d6ee",
"sha256": "750761d30c70ffd45cd30ef8982e4c0665e76914efcc828ff4cd8450acddd328"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "7dee8415a36f14cb99b74ca870d1d6ee",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 324818,
"upload_time": "2024-12-09T17:00:26",
"upload_time_iso_8601": "2024-12-09T17:00:26.557468Z",
"url": "https://files.pythonhosted.org/packages/fa/de/08dc63ef974b6720e1f6159a4d3b36f0cb40d2d1c4a6315ebdf0bbf78ef7/rtoml-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1913c1454fdc0562318b3ef33dc60d365ba4fb8b5b8d252802b3f4a4046fa4b",
"md5": "5ad0566cafde060ee4a68c200e8f5d19",
"sha256": "af6dd6adc39a5be17dc6b07e13c1dd0e07af095a909e04355b756ad7ee7a7211"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5ad0566cafde060ee4a68c200e8f5d19",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 313497,
"upload_time": "2024-12-09T17:00:28",
"upload_time_iso_8601": "2024-12-09T17:00:28.926610Z",
"url": "https://files.pythonhosted.org/packages/b1/91/3c1454fdc0562318b3ef33dc60d365ba4fb8b5b8d252802b3f4a4046fa4b/rtoml-0.12.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "957e6554227a80e750a6b27b0439f94d5406b0db479bb07c7b29437dbc4fbab0",
"md5": "21b2334c3a6422d1410bc4c80b181596",
"sha256": "4f4f3f7667c4d030669ae378da5d15a5c8dcb0065d12d2505b676f84828426b0"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "21b2334c3a6422d1410bc4c80b181596",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 341331,
"upload_time": "2024-12-09T17:00:31",
"upload_time_iso_8601": "2024-12-09T17:00:31.110443Z",
"url": "https://files.pythonhosted.org/packages/95/7e/6554227a80e750a6b27b0439f94d5406b0db479bb07c7b29437dbc4fbab0/rtoml-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ff9567a5353b3c30fa484e851d5cd0fc689efc48aa3edd6e28ce765e0c6f874",
"md5": "66a009f0a0c69b750635c37bf523a50f",
"sha256": "76261f8ffdf78f0947c6628f364807073f3d30c2f480f5d7ee40d09e951ec84a"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "66a009f0a0c69b750635c37bf523a50f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 360949,
"upload_time": "2024-12-09T17:00:33",
"upload_time_iso_8601": "2024-12-09T17:00:33.470892Z",
"url": "https://files.pythonhosted.org/packages/7f/f9/567a5353b3c30fa484e851d5cd0fc689efc48aa3edd6e28ce765e0c6f874/rtoml-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cd15d914a94b49b3695d1ab125fb00cb277bff5027dd0ef29b3b903ccbe9f42",
"md5": "adebbc9bc63027b06fe7d88ca2b8ee2e",
"sha256": "71884d293c34abf37d14b5e561ea0e57d71caa81b6f42c4c04120c7dd19650ca"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "adebbc9bc63027b06fe7d88ca2b8ee2e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 384408,
"upload_time": "2024-12-09T17:00:35",
"upload_time_iso_8601": "2024-12-09T17:00:35.753143Z",
"url": "https://files.pythonhosted.org/packages/7c/d1/5d914a94b49b3695d1ab125fb00cb277bff5027dd0ef29b3b903ccbe9f42/rtoml-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e8974f435cc713bf9c8f7cef11fa24999f85dfb9f8ff84ce79bff0c905fa6a2",
"md5": "7a702b8bc68336f274b9274a411e0ac9",
"sha256": "4d991801446b964040b914527c62ae42d3f36be52a45be1d1f5fc2f36aa1dce3"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7a702b8bc68336f274b9274a411e0ac9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 485025,
"upload_time": "2024-12-09T17:00:38",
"upload_time_iso_8601": "2024-12-09T17:00:38.142151Z",
"url": "https://files.pythonhosted.org/packages/7e/89/74f435cc713bf9c8f7cef11fa24999f85dfb9f8ff84ce79bff0c905fa6a2/rtoml-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d070085af811ed39fb39ed7063a052474c0deb34e28df4ab5bb3c3a6d0e04e94",
"md5": "25e49ffca61a8430ae602f22911832eb",
"sha256": "08da11609dab48b57ee2969beec593863db1f83957d0879a8bb88d2d41b44f2c"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "25e49ffca61a8430ae602f22911832eb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 349186,
"upload_time": "2024-12-09T17:00:39",
"upload_time_iso_8601": "2024-12-09T17:00:39.608180Z",
"url": "https://files.pythonhosted.org/packages/d0/70/085af811ed39fb39ed7063a052474c0deb34e28df4ab5bb3c3a6d0e04e94/rtoml-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "71f9d31a3198bc8f1e690e4273d15195e8a6319fd3f1618f7bd7121af1ffd25a",
"md5": "d5289ddd4893a07f93129a2a1cf973ed",
"sha256": "8a2dbb5aa11ab76e4f2f6fcfc53996eb1a3aaedd8465352b597a8a70e1ec0818"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "d5289ddd4893a07f93129a2a1cf973ed",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 368224,
"upload_time": "2024-12-09T17:00:41",
"upload_time_iso_8601": "2024-12-09T17:00:41.338452Z",
"url": "https://files.pythonhosted.org/packages/71/f9/d31a3198bc8f1e690e4273d15195e8a6319fd3f1618f7bd7121af1ffd25a/rtoml-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4962f201d4b58df8b97512e922c4a9d8a62f51febca1e9ca0d1d8a3b789a3f42",
"md5": "1376cc5b4e638644145d00c14e9342ff",
"sha256": "ded14b9b0fce50bfe38eab6a3f8300eb969019f69bd64a3f6eb1b47949d9f34d"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "1376cc5b4e638644145d00c14e9342ff",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 520403,
"upload_time": "2024-12-09T17:00:43",
"upload_time_iso_8601": "2024-12-09T17:00:43.057419Z",
"url": "https://files.pythonhosted.org/packages/49/62/f201d4b58df8b97512e922c4a9d8a62f51febca1e9ca0d1d8a3b789a3f42/rtoml-0.12.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e1c20a9aa9ccaaadd82bde1388c8e579528e68810e426bde79ca35c3341aeb6",
"md5": "ab95874f1f8fa55058a81990cba21260",
"sha256": "79adf4665f50153cb1b625bb1271fd9c0362ce48ffb7ee12c729e7f8087242ce"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ab95874f1f8fa55058a81990cba21260",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 520124,
"upload_time": "2024-12-09T17:00:45",
"upload_time_iso_8601": "2024-12-09T17:00:45.417147Z",
"url": "https://files.pythonhosted.org/packages/5e/1c/20a9aa9ccaaadd82bde1388c8e579528e68810e426bde79ca35c3341aeb6/rtoml-0.12.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "acb65d136a24a9252edae5ce4613fe531a379f73dbbf1fbcbad869503b831f74",
"md5": "ff08fd9f400d3dddebbb1a82f42c1201",
"sha256": "17b9628a7c70404fdd440d95eea5ba749653f000773df868d4accc2d61760db4"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "ff08fd9f400d3dddebbb1a82f42c1201",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 219055,
"upload_time": "2024-12-09T17:00:46",
"upload_time_iso_8601": "2024-12-09T17:00:46.806150Z",
"url": "https://files.pythonhosted.org/packages/ac/b6/5d136a24a9252edae5ce4613fe531a379f73dbbf1fbcbad869503b831f74/rtoml-0.12.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53bec0a13f0b2b1317785592806e143819af8dc2cf35e6ecd62e260274f730a7",
"md5": "f5fc556843700e828e176a189121a9d1",
"sha256": "540e461998f419a11fd73ebd2aa6de8986af8348ddfd18d2eb2c5f57ec9ed08d"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "f5fc556843700e828e176a189121a9d1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 224617,
"upload_time": "2024-12-09T17:00:49",
"upload_time_iso_8601": "2024-12-09T17:00:49.045059Z",
"url": "https://files.pythonhosted.org/packages/53/be/c0a13f0b2b1317785592806e143819af8dc2cf35e6ecd62e260274f730a7/rtoml-0.12.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5616a6612dd636be6ff56ed285bfffa938915fa62fdacad8d8c6b13586374ad5",
"md5": "431bbf90985ddc84f5f058e4d77b9a0c",
"sha256": "d986a7ea113122023a76ff9b2ed40ecc86ff9ed1e5c459010b6b06b5f05ef4ed"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "431bbf90985ddc84f5f058e4d77b9a0c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 325059,
"upload_time": "2024-12-09T17:00:50",
"upload_time_iso_8601": "2024-12-09T17:00:50.494470Z",
"url": "https://files.pythonhosted.org/packages/56/16/a6612dd636be6ff56ed285bfffa938915fa62fdacad8d8c6b13586374ad5/rtoml-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ff0cef59ce5f4a72a92562c07c94c4d15f6c03b92bb3e385eb4cdd4136bca6b",
"md5": "22475063e8d763e305458a2c716ea211",
"sha256": "0229a51ec690b30a899b60ec06ae132c4ebf86bc81efd2a9a131f482570324d1"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "22475063e8d763e305458a2c716ea211",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 313693,
"upload_time": "2024-12-09T17:00:51",
"upload_time_iso_8601": "2024-12-09T17:00:51.997373Z",
"url": "https://files.pythonhosted.org/packages/7f/f0/cef59ce5f4a72a92562c07c94c4d15f6c03b92bb3e385eb4cdd4136bca6b/rtoml-0.12.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81cd6a45e07aba35f0c40d6628a237f6b61d940b2fe60799ad16364e50bcac6f",
"md5": "8dd601b8024fd4ff9c65b2348175e803",
"sha256": "51c9112935bd33dd9d30d45ff37567f0ece78b0ff5aa823072d448a96693f429"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8dd601b8024fd4ff9c65b2348175e803",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 341305,
"upload_time": "2024-12-09T17:00:53",
"upload_time_iso_8601": "2024-12-09T17:00:53.701663Z",
"url": "https://files.pythonhosted.org/packages/81/cd/6a45e07aba35f0c40d6628a237f6b61d940b2fe60799ad16364e50bcac6f/rtoml-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c5d0ffb6243e009472d2ce58b794830105067b03f01648a6c8c76bce9bc8fbb",
"md5": "235d923a8d4321bf9c09d9bd34342534",
"sha256": "69a0bbd81ab27272845f2d2c211f7a1fc18d16ef6fc756796ec636589867c1e5"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "235d923a8d4321bf9c09d9bd34342534",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 361097,
"upload_time": "2024-12-09T17:00:55",
"upload_time_iso_8601": "2024-12-09T17:00:55.318150Z",
"url": "https://files.pythonhosted.org/packages/8c/5d/0ffb6243e009472d2ce58b794830105067b03f01648a6c8c76bce9bc8fbb/rtoml-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "59c5182d70e7f3ec00afaffaf979fe1ddcccfe9afaa00ccda38c09be5375cbeb",
"md5": "76f8529d700a92eb186c41eadfe6ab61",
"sha256": "90becb592ac6129b132d299fc4c911c470fbf88d032a0df7987f9a30c8260966"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "76f8529d700a92eb186c41eadfe6ab61",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 384548,
"upload_time": "2024-12-09T17:00:56",
"upload_time_iso_8601": "2024-12-09T17:00:56.857372Z",
"url": "https://files.pythonhosted.org/packages/59/c5/182d70e7f3ec00afaffaf979fe1ddcccfe9afaa00ccda38c09be5375cbeb/rtoml-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a5f1797307c95db6b934cb9724fefe09200ed4363d670984da9505c3e00c723",
"md5": "f598e1ec753b13ad5d1fd01a4258a80f",
"sha256": "d70ac00b0d838f5e54a5d957a74399aac2e671c60354f6457e0400c5e509d83d"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f598e1ec753b13ad5d1fd01a4258a80f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 484113,
"upload_time": "2024-12-09T17:00:59",
"upload_time_iso_8601": "2024-12-09T17:00:59.183082Z",
"url": "https://files.pythonhosted.org/packages/1a/5f/1797307c95db6b934cb9724fefe09200ed4363d670984da9505c3e00c723/rtoml-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f14efbd9c680da5f6f0788164109a326c5727c2827828fa202203e36418d1f7f",
"md5": "de08e8072745e36200c662c6c7ae2f11",
"sha256": "53ce9204b52a51cb4d7aa29eb846cd78ce8644f3750c8de07f07f1561150c109"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "de08e8072745e36200c662c6c7ae2f11",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 349152,
"upload_time": "2024-12-09T17:01:00",
"upload_time_iso_8601": "2024-12-09T17:01:00.653982Z",
"url": "https://files.pythonhosted.org/packages/f1/4e/fbd9c680da5f6f0788164109a326c5727c2827828fa202203e36418d1f7f/rtoml-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ed4523f17e7819dda78e29362b8ece4a6dd398099b40b8faaf238633aad5fbd",
"md5": "ecdc9517c7613b5ead3e580750feebee",
"sha256": "1b59008b2e8e5216aab65a9a711df032a89ef91c5bd66a1e22c74cd5ea4dfe7a"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ecdc9517c7613b5ead3e580750feebee",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 368377,
"upload_time": "2024-12-09T17:01:02",
"upload_time_iso_8601": "2024-12-09T17:01:02.955300Z",
"url": "https://files.pythonhosted.org/packages/8e/d4/523f17e7819dda78e29362b8ece4a6dd398099b40b8faaf238633aad5fbd/rtoml-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e93e219c8222dc226eb6b42b9f7e8cf9af0f05479cb9328c1f74645da106bd11",
"md5": "d306dc4fbf246fd509c4305c46e110ab",
"sha256": "1a571e582b14cf4d36f52ae2066c098e4265714780db9d2ba1f1f2fc6718cf7e"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "d306dc4fbf246fd509c4305c46e110ab",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 520247,
"upload_time": "2024-12-09T17:01:04",
"upload_time_iso_8601": "2024-12-09T17:01:04.520346Z",
"url": "https://files.pythonhosted.org/packages/e9/3e/219c8222dc226eb6b42b9f7e8cf9af0f05479cb9328c1f74645da106bd11/rtoml-0.12.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c9cfc1dea06ad0ecc59950cf773bb99a265af86210fd6b6dc4c66984ec9b32bd",
"md5": "af560c64a565dc7db8e1de04f68e17d2",
"sha256": "4171fce22163ba0c5f9ca07320d768e25fd3c5603cf56366f327443e60aabc8c"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "af560c64a565dc7db8e1de04f68e17d2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 520088,
"upload_time": "2024-12-09T17:01:06",
"upload_time_iso_8601": "2024-12-09T17:01:06.062117Z",
"url": "https://files.pythonhosted.org/packages/c9/cf/c1dea06ad0ecc59950cf773bb99a265af86210fd6b6dc4c66984ec9b32bd/rtoml-0.12.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab80a42d1bada534817ce91633db8696fa58b9c6d3cde0a8142a944c0cb96ecb",
"md5": "abbbe585307d550398168d0647b8f76f",
"sha256": "1f11b74bd8f730bb87fdbace4367d49adec006b75228fea869da3e9e460a20b2"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "abbbe585307d550398168d0647b8f76f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 219441,
"upload_time": "2024-12-09T17:01:07",
"upload_time_iso_8601": "2024-12-09T17:01:07.665672Z",
"url": "https://files.pythonhosted.org/packages/ab/80/a42d1bada534817ce91633db8696fa58b9c6d3cde0a8142a944c0cb96ecb/rtoml-0.12.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0fe900ab4b4da40e254d36baf670b67da88240990a86d44fc78b9d6a642563d7",
"md5": "9fc49a5a6ff239cec701675aea430ba3",
"sha256": "6bc52a5d177668d9244c09aad75df8dc9a022155e4002850c03badba51585e5c"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9fc49a5a6ff239cec701675aea430ba3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 224793,
"upload_time": "2024-12-09T17:01:10",
"upload_time_iso_8601": "2024-12-09T17:01:10.084137Z",
"url": "https://files.pythonhosted.org/packages/0f/e9/00ab4b4da40e254d36baf670b67da88240990a86d44fc78b9d6a642563d7/rtoml-0.12.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4cec993038e802e5eded28e3ed680c31755e833ba82bb8bbc52eb9f1c3ea2504",
"md5": "df413f214b17d085eea8adc760d23b19",
"sha256": "e8308f6b585f5b9343fc54bd028d2662c0d6637fa123d5f8b96beef4626a323a"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "df413f214b17d085eea8adc760d23b19",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 216905,
"upload_time": "2024-12-09T17:01:11",
"upload_time_iso_8601": "2024-12-09T17:01:11.954074Z",
"url": "https://files.pythonhosted.org/packages/4c/ec/993038e802e5eded28e3ed680c31755e833ba82bb8bbc52eb9f1c3ea2504/rtoml-0.12.0-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcf8ab3712301107d19ef256338838af335378cb87c43cc5144e159c9fb46222",
"md5": "b1bc4ad3695d3bd9ba7b6915aad6f9da",
"sha256": "ac75a75f15924fa582df465a3b1f4495710e3d4e1930837423ea396bcb1549b6"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b1bc4ad3695d3bd9ba7b6915aad6f9da",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 322966,
"upload_time": "2024-12-09T17:01:13",
"upload_time_iso_8601": "2024-12-09T17:01:13.414662Z",
"url": "https://files.pythonhosted.org/packages/fc/f8/ab3712301107d19ef256338838af335378cb87c43cc5144e159c9fb46222/rtoml-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bacc499c45159e96247167c6e3ee293f2d4f16f7e7d9c1585025bbb902de57a3",
"md5": "659d930036aec510f8a12c6da150b702",
"sha256": "fd895de2745b4874498608948a9496e587b3154903ca8c6b4dec8f8b6c2a5252"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "659d930036aec510f8a12c6da150b702",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 311730,
"upload_time": "2024-12-09T17:01:15",
"upload_time_iso_8601": "2024-12-09T17:01:15.619555Z",
"url": "https://files.pythonhosted.org/packages/ba/cc/499c45159e96247167c6e3ee293f2d4f16f7e7d9c1585025bbb902de57a3/rtoml-0.12.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "732aa97927be7b586c9f50825295b3ff34d30c06ebaa41593a961645e0c84c4d",
"md5": "2728ff9648f010c39558135358401962",
"sha256": "1c1c82d2a79a943c33b851ec3745580ea93fbc40dcb970288439107b6e4a7062"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2728ff9648f010c39558135358401962",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 338995,
"upload_time": "2024-12-09T17:01:17",
"upload_time_iso_8601": "2024-12-09T17:01:17.138312Z",
"url": "https://files.pythonhosted.org/packages/73/2a/a97927be7b586c9f50825295b3ff34d30c06ebaa41593a961645e0c84c4d/rtoml-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f22fc829b0282c20dde98a66625ebc67a2d3bd9c3bb185e19b8dc09fac6b2ee",
"md5": "d1d4b04062805ccef8edd10349970ef8",
"sha256": "5ada7cc9fc0b94d1f5095d71d8966d10ee2628d69c574e3ef8c9e6dd36a9d525"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d1d4b04062805ccef8edd10349970ef8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 359621,
"upload_time": "2024-12-09T17:01:18",
"upload_time_iso_8601": "2024-12-09T17:01:18.927513Z",
"url": "https://files.pythonhosted.org/packages/8f/22/fc829b0282c20dde98a66625ebc67a2d3bd9c3bb185e19b8dc09fac6b2ee/rtoml-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ca496500a6d80c694813c0a795a90ec41d174344ce66acba8edb9507a3816d7",
"md5": "e845eb0443fdba3831f8a8fdfb210270",
"sha256": "a7e4c13ed587d5fc8012aaacca3b73d283191f5462f27b005cadbf9a30083428"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e845eb0443fdba3831f8a8fdfb210270",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 382684,
"upload_time": "2024-12-09T17:01:21",
"upload_time_iso_8601": "2024-12-09T17:01:21.137918Z",
"url": "https://files.pythonhosted.org/packages/4c/a4/96500a6d80c694813c0a795a90ec41d174344ce66acba8edb9507a3816d7/rtoml-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6160439bfff454a66c6cb197923400a9d07fd4664edf237983efcad8df1633a6",
"md5": "0623b70f1510db5de83e195b6b7d19b6",
"sha256": "cd24ed60f588aa7262528bfabf97ebf776ff1948ae78829c00389813cd482374"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0623b70f1510db5de83e195b6b7d19b6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 482316,
"upload_time": "2024-12-09T17:01:22",
"upload_time_iso_8601": "2024-12-09T17:01:22.611598Z",
"url": "https://files.pythonhosted.org/packages/61/60/439bfff454a66c6cb197923400a9d07fd4664edf237983efcad8df1633a6/rtoml-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d76732b5f4ccb06876eec4bd339dc739e5e0ae30f3494f88012f9d293d265d9e",
"md5": "4403cabdef77b7f390bd5714900eea50",
"sha256": "827159e7313fa35b8495c3ec1c54526ccd2fbd9713084ad959c4455749b4a68d"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4403cabdef77b7f390bd5714900eea50",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 347280,
"upload_time": "2024-12-09T17:01:24",
"upload_time_iso_8601": "2024-12-09T17:01:24.955427Z",
"url": "https://files.pythonhosted.org/packages/d7/67/32b5f4ccb06876eec4bd339dc739e5e0ae30f3494f88012f9d293d265d9e/rtoml-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6536a0cab2a2a2e00c351d19706ea0afd4034529a9402b7577051baf4ec5cf34",
"md5": "1871f3f5782dd1e86c231d9a45c55708",
"sha256": "2fad4117620e22482468f28556362e778d44c2065dfac176bf42ac4997214ae4"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "1871f3f5782dd1e86c231d9a45c55708",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 366405,
"upload_time": "2024-12-09T17:01:27",
"upload_time_iso_8601": "2024-12-09T17:01:27.297659Z",
"url": "https://files.pythonhosted.org/packages/65/36/a0cab2a2a2e00c351d19706ea0afd4034529a9402b7577051baf4ec5cf34/rtoml-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88a8155fa88275e54a3b336ab5c0dec2bad5c374d6a1c4bf085deffd16baf09a",
"md5": "fc8dd04b3126779b2a083576b371c588",
"sha256": "5248359a67aa034e409f2b06fed02de964bf9dd7f401661076dd7ddf3a81659b"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "fc8dd04b3126779b2a083576b371c588",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 518700,
"upload_time": "2024-12-09T17:01:28",
"upload_time_iso_8601": "2024-12-09T17:01:28.970726Z",
"url": "https://files.pythonhosted.org/packages/88/a8/155fa88275e54a3b336ab5c0dec2bad5c374d6a1c4bf085deffd16baf09a/rtoml-0.12.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04805fe39d943ba2a40ef2dcf8af00fa0bf35d18b6d495abdacc5b67502a194b",
"md5": "1adef1abacb990e4e8cc435b3b7c1bd8",
"sha256": "28a81c9335f2d7b9cdb6053940b35c590c675222d4935f7a4b8751071e5a5519"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "1adef1abacb990e4e8cc435b3b7c1bd8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 518107,
"upload_time": "2024-12-09T17:01:31",
"upload_time_iso_8601": "2024-12-09T17:01:31.362245Z",
"url": "https://files.pythonhosted.org/packages/04/80/5fe39d943ba2a40ef2dcf8af00fa0bf35d18b6d495abdacc5b67502a194b/rtoml-0.12.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb25f5b371c08269db9a0c4df5e80244c7a2d21e41197f4d66ea80556fbaaa83",
"md5": "0fe3ec5589502e7a913bd872acf5c0e0",
"sha256": "b28c7882f60622645ff7dd180ddb85f4e018406b674ea86f65d99ac0f75747bc"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "0fe3ec5589502e7a913bd872acf5c0e0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 220464,
"upload_time": "2024-12-09T17:01:33",
"upload_time_iso_8601": "2024-12-09T17:01:33.706304Z",
"url": "https://files.pythonhosted.org/packages/fb/25/f5b371c08269db9a0c4df5e80244c7a2d21e41197f4d66ea80556fbaaa83/rtoml-0.12.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8d95e6df3255f3eb277a8b6b3c421aba85803d9aa73a9562c50878642b9b300",
"md5": "895056fa85e6af81bcbece1fbb4934fb",
"sha256": "d7e187c38a86202bde843a517d341c026f7b0eb098ad5396ed40f93170565bd7"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "895056fa85e6af81bcbece1fbb4934fb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 225520,
"upload_time": "2024-12-09T17:01:35",
"upload_time_iso_8601": "2024-12-09T17:01:35.209502Z",
"url": "https://files.pythonhosted.org/packages/b8/d9/5e6df3255f3eb277a8b6b3c421aba85803d9aa73a9562c50878642b9b300/rtoml-0.12.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5b4605d263956ef7287519df9c269de0409ea6589f4b1ddf6ce9e6d58a61e30",
"md5": "b3f00c0ebe9a0c3cb061f32d699a3b3b",
"sha256": "477131a487140163cc9850a66d92a864fb507b37d81fb3366ad5203d30c85520"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "b3f00c0ebe9a0c3cb061f32d699a3b3b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 217230,
"upload_time": "2024-12-09T17:01:36",
"upload_time_iso_8601": "2024-12-09T17:01:36.707644Z",
"url": "https://files.pythonhosted.org/packages/d5/b4/605d263956ef7287519df9c269de0409ea6589f4b1ddf6ce9e6d58a61e30/rtoml-0.12.0-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88f535c0dcfb152300980c05c8c810bd9927fa204db9722917a11d617718ce8c",
"md5": "4785284bb91087d8f073e7eb314139dc",
"sha256": "12e99b493f0d59ad925b307b4c3b15c560ee44c672dce2ddce227e550560af5e"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "4785284bb91087d8f073e7eb314139dc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 322647,
"upload_time": "2024-12-09T17:01:38",
"upload_time_iso_8601": "2024-12-09T17:01:38.280371Z",
"url": "https://files.pythonhosted.org/packages/88/f5/35c0dcfb152300980c05c8c810bd9927fa204db9722917a11d617718ce8c/rtoml-0.12.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3aedd1d50706ff2ab0a934437609320fd8c4e0834e9bb5bba273ad76e86c9ca0",
"md5": "777d1f90137f4cf137c2fce3f70e13de",
"sha256": "a058a1739a2519a41afe160280dcd791c202068e477ceb7ebf606830299c63af"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "777d1f90137f4cf137c2fce3f70e13de",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 311468,
"upload_time": "2024-12-09T17:01:40",
"upload_time_iso_8601": "2024-12-09T17:01:40.250219Z",
"url": "https://files.pythonhosted.org/packages/3a/ed/d1d50706ff2ab0a934437609320fd8c4e0834e9bb5bba273ad76e86c9ca0/rtoml-0.12.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc0fcb0c0b3db93775e3dfa7b83bfe8f9df7f75a2b61934c668cfaa377adcee2",
"md5": "de32cdd9cacc2c5e867c10e90ab7df09",
"sha256": "8f5ee3825c9c7aad732b184fed58cc2c368360ca8d553516663374937b9497be"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "de32cdd9cacc2c5e867c10e90ab7df09",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 338539,
"upload_time": "2024-12-09T17:01:41",
"upload_time_iso_8601": "2024-12-09T17:01:41.990807Z",
"url": "https://files.pythonhosted.org/packages/dc/0f/cb0c0b3db93775e3dfa7b83bfe8f9df7f75a2b61934c668cfaa377adcee2/rtoml-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd493ce420d49d9beae463a08326dbe276dbb8f9c76730ffbc4e49349cc5ba32",
"md5": "fc8e5eef55e0905ebfdabb687698f2a5",
"sha256": "3637da07651aa522fcaa81d7944167a9db886c687ec81c31aade0048caa51c97"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "fc8e5eef55e0905ebfdabb687698f2a5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 359135,
"upload_time": "2024-12-09T17:01:43",
"upload_time_iso_8601": "2024-12-09T17:01:43.537125Z",
"url": "https://files.pythonhosted.org/packages/cd/49/3ce420d49d9beae463a08326dbe276dbb8f9c76730ffbc4e49349cc5ba32/rtoml-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26f5257d2d2561597c3286e036053b6af4bd0f488d7adaf9e213ea1cf8c1e3a2",
"md5": "4d0a8b1b68f35f749a73ffbeb06ac059",
"sha256": "559f77c916cf02e0261756a7924382e5b4a529a316106aba9b7ff4b3b39e227a"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4d0a8b1b68f35f749a73ffbeb06ac059",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 382226,
"upload_time": "2024-12-09T17:01:45",
"upload_time_iso_8601": "2024-12-09T17:01:45.064455Z",
"url": "https://files.pythonhosted.org/packages/26/f5/257d2d2561597c3286e036053b6af4bd0f488d7adaf9e213ea1cf8c1e3a2/rtoml-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f894c415547d83b5831ef61302a41929d5013dc4d03c38fa77289f49c34e32e0",
"md5": "a38cef120189bef5caf1afdc7d0c48ec",
"sha256": "0b9156c2d30a2917f172b9a98c251864d3063dc5bc9764147779245c8a690441"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a38cef120189bef5caf1afdc7d0c48ec",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 482014,
"upload_time": "2024-12-09T17:01:46",
"upload_time_iso_8601": "2024-12-09T17:01:46.571697Z",
"url": "https://files.pythonhosted.org/packages/f8/94/c415547d83b5831ef61302a41929d5013dc4d03c38fa77289f49c34e32e0/rtoml-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8b887074f0c3f14b27dbe0eedd87cf41a5b00d4c12a06e16d76d6167f42a65d",
"md5": "f695793f65b080b51a93a6053e23a9ac",
"sha256": "bea9797f08311b0b605cae671abd884724d8d3d6524c184ccf8c70b220a9a68b"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f695793f65b080b51a93a6053e23a9ac",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 346701,
"upload_time": "2024-12-09T17:01:48",
"upload_time_iso_8601": "2024-12-09T17:01:48.172152Z",
"url": "https://files.pythonhosted.org/packages/e8/b8/87074f0c3f14b27dbe0eedd87cf41a5b00d4c12a06e16d76d6167f42a65d/rtoml-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27572c25850a7f5597eaacc815194df3f78b99ff04201f48c2a573c0c1e05f97",
"md5": "20d60990d34a8bd291d48f97b71611e0",
"sha256": "b522f671f8964a79dda162c9985950422e27fe9420dd924257dee0184c8d047f"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "20d60990d34a8bd291d48f97b71611e0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 365954,
"upload_time": "2024-12-09T17:01:49",
"upload_time_iso_8601": "2024-12-09T17:01:49.749718Z",
"url": "https://files.pythonhosted.org/packages/27/57/2c25850a7f5597eaacc815194df3f78b99ff04201f48c2a573c0c1e05f97/rtoml-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe63892c5c2087a159cd5bad8cab759b015fdd185d50ba97a91725548435b1f9",
"md5": "7618852bc1920dd393330d09d819de66",
"sha256": "321ee9dca365b5c1dab8c74617e7f8c941de3fdc10ac9f3c11c9ac261418ed80"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "7618852bc1920dd393330d09d819de66",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 518241,
"upload_time": "2024-12-09T17:01:52",
"upload_time_iso_8601": "2024-12-09T17:01:52.084303Z",
"url": "https://files.pythonhosted.org/packages/fe/63/892c5c2087a159cd5bad8cab759b015fdd185d50ba97a91725548435b1f9/rtoml-0.12.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b69689c80a946adbd2050999b7cee974120c28df16683b8a5bbf3a09ea6b2a1b",
"md5": "f5e27a92e8abef62c2b23b61f5640dd9",
"sha256": "57912b150aa48a8a90b599b57691a165092a9f5cf9a98bf431b1cd380e58414a"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f5e27a92e8abef62c2b23b61f5640dd9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 517418,
"upload_time": "2024-12-09T17:01:54",
"upload_time_iso_8601": "2024-12-09T17:01:54.363359Z",
"url": "https://files.pythonhosted.org/packages/b6/96/89c80a946adbd2050999b7cee974120c28df16683b8a5bbf3a09ea6b2a1b/rtoml-0.12.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b88354f0f3388b38cb50a58e4abbeb364e08b7f6739f79c8a1a03f3326caaec",
"md5": "bad03cd3e870300dd930c70aebcfc2a1",
"sha256": "7aebc94ed208ff46e6ce469ef30b98095932a3e74b99bde102a0f035d5034620"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "bad03cd3e870300dd930c70aebcfc2a1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 220123,
"upload_time": "2024-12-09T17:01:55",
"upload_time_iso_8601": "2024-12-09T17:01:55.998605Z",
"url": "https://files.pythonhosted.org/packages/3b/88/354f0f3388b38cb50a58e4abbeb364e08b7f6739f79c8a1a03f3326caaec/rtoml-0.12.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aac88dc7e391ef6ee8967a8ac1a2c40e483d99b6c0e09c96ce0e5d4c01f88b9c",
"md5": "99a23b62016a4209901493d96bd3a334",
"sha256": "1c88e48946adef48dce2dc54f1380f6ff0d580f06770f9ca9600ef330bc06c39"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "99a23b62016a4209901493d96bd3a334",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 225143,
"upload_time": "2024-12-09T17:01:57",
"upload_time_iso_8601": "2024-12-09T17:01:57.578651Z",
"url": "https://files.pythonhosted.org/packages/aa/c8/8dc7e391ef6ee8967a8ac1a2c40e483d99b6c0e09c96ce0e5d4c01f88b9c/rtoml-0.12.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6402e8640ffe564626424aba6f1ea19f41f278e46932e5431faf8265f6e1dcb",
"md5": "10742363df390f556e0b900b68cd92eb",
"sha256": "730770673649220d4265d9986d3a9089d38434f36c1c629b98a58eb2bbee9cfb"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "10742363df390f556e0b900b68cd92eb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 216902,
"upload_time": "2024-12-09T17:01:59",
"upload_time_iso_8601": "2024-12-09T17:01:59.839352Z",
"url": "https://files.pythonhosted.org/packages/a6/40/2e8640ffe564626424aba6f1ea19f41f278e46932e5431faf8265f6e1dcb/rtoml-0.12.0-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1bca87c6c4ffeb629460c7c4c4e03d824c5752a65f6a5b5e99cccbd7c103c61",
"md5": "f917afba9733040f23660457de78174d",
"sha256": "9d3d266cbb0d42cf83658eb0ecc40288036fe986b200cefd2c6ad8e3c714b4cf"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f917afba9733040f23660457de78174d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 325737,
"upload_time": "2024-12-09T17:02:01",
"upload_time_iso_8601": "2024-12-09T17:02:01.384104Z",
"url": "https://files.pythonhosted.org/packages/a1/bc/a87c6c4ffeb629460c7c4c4e03d824c5752a65f6a5b5e99cccbd7c103c61/rtoml-0.12.0-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d2fa9f9ff455a2d49ef269b9c4bb54ace30e7262d8184257cd61ac83b65cb218",
"md5": "b775e5d06e072e8b7a00271724ad8f74",
"sha256": "4e919d19518a8f3c769601105677c2c2c73c1a7a1ac4306830f570801abf3299"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b775e5d06e072e8b7a00271724ad8f74",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 314776,
"upload_time": "2024-12-09T17:02:03",
"upload_time_iso_8601": "2024-12-09T17:02:03.009090Z",
"url": "https://files.pythonhosted.org/packages/d2/fa/9f9ff455a2d49ef269b9c4bb54ace30e7262d8184257cd61ac83b65cb218/rtoml-0.12.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36f3201f189b5d868da51a306cddc6ce5f74560ff0e9238405c666de374c212c",
"md5": "22a9f185b2935e44aa2fcb6caf733ec9",
"sha256": "48f6ca7405f3bb45307029156b2f69c7048cc8c0cd840356f81f64091030adeb"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "22a9f185b2935e44aa2fcb6caf733ec9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 342129,
"upload_time": "2024-12-09T17:02:04",
"upload_time_iso_8601": "2024-12-09T17:02:04.589771Z",
"url": "https://files.pythonhosted.org/packages/36/f3/201f189b5d868da51a306cddc6ce5f74560ff0e9238405c666de374c212c/rtoml-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35067fd09e8f84d5768d61f7878fd3684547c51a0c711acfaf3e7de4f854c18e",
"md5": "97631357a333f14f68ae847eba49281b",
"sha256": "8c7865af375c8f40e75bcf82cbb10e20d662f239a9f49e5597e28742c938f4e5"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "97631357a333f14f68ae847eba49281b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 362070,
"upload_time": "2024-12-09T17:02:06",
"upload_time_iso_8601": "2024-12-09T17:02:06.238573Z",
"url": "https://files.pythonhosted.org/packages/35/06/7fd09e8f84d5768d61f7878fd3684547c51a0c711acfaf3e7de4f854c18e/rtoml-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d1be3128ea66d5e5c77f1f3e4c42f0423833d3ef93ddfb433a342e332a727ee",
"md5": "53f2a00a078f6cf202d278cbf10dd8e3",
"sha256": "67e7c7c61224d2b31aa2d6f9bbdd81011a505cb0388f2e9e6d815a840dd6c39a"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "53f2a00a078f6cf202d278cbf10dd8e3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 385087,
"upload_time": "2024-12-09T17:02:07",
"upload_time_iso_8601": "2024-12-09T17:02:07.988865Z",
"url": "https://files.pythonhosted.org/packages/7d/1b/e3128ea66d5e5c77f1f3e4c42f0423833d3ef93ddfb433a342e332a727ee/rtoml-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77378f5d06b58121764563061f59258d6b23aba46ce33e40df875f323ccc09b4",
"md5": "74d60662e2176d931edd822f1448a866",
"sha256": "206c7ba5ab2a4b5f452565b1751430cc14d7b1423045370e5968a0e5a15846a7"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "74d60662e2176d931edd822f1448a866",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 486316,
"upload_time": "2024-12-09T17:02:10",
"upload_time_iso_8601": "2024-12-09T17:02:10.268259Z",
"url": "https://files.pythonhosted.org/packages/77/37/8f5d06b58121764563061f59258d6b23aba46ce33e40df875f323ccc09b4/rtoml-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf35a95e2d373f48cb8b51e3b10ae3d266b04c206c1cae48f85f28acbdbff27a",
"md5": "d64c1cc4730f063db535774c69c571ac",
"sha256": "b8f4ae09e9ca8de5bd874b661302f8083dc1a47b0865f99f7becf24903f76736"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d64c1cc4730f063db535774c69c571ac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 350093,
"upload_time": "2024-12-09T17:02:11",
"upload_time_iso_8601": "2024-12-09T17:02:11.991905Z",
"url": "https://files.pythonhosted.org/packages/bf/35/a95e2d373f48cb8b51e3b10ae3d266b04c206c1cae48f85f28acbdbff27a/rtoml-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f7ce3653dbe929e6723512beabc4229b443d5d0051a4c64b1e821693a3c67dc",
"md5": "a7f9754da07d05f1f133caf484ff540c",
"sha256": "3c7b633b74f7590f4c1e1fe36c1e6a26ca6dfa6491b9d91530d6e907b29d296b"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "a7f9754da07d05f1f133caf484ff540c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 369261,
"upload_time": "2024-12-09T17:02:14",
"upload_time_iso_8601": "2024-12-09T17:02:14.549797Z",
"url": "https://files.pythonhosted.org/packages/2f/7c/e3653dbe929e6723512beabc4229b443d5d0051a4c64b1e821693a3c67dc/rtoml-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c671f2fdd00697f89ec9045eefcf41f7d28b7a05f73e9593d3667c76a42857e",
"md5": "0d532a24e49c5d48bc5b26d22597692f",
"sha256": "63f6742f3e0dd076309c195af422447513ccace978023784607ee22302f4a900"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "0d532a24e49c5d48bc5b26d22597692f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 521115,
"upload_time": "2024-12-09T17:02:16",
"upload_time_iso_8601": "2024-12-09T17:02:16.793794Z",
"url": "https://files.pythonhosted.org/packages/3c/67/1f2fdd00697f89ec9045eefcf41f7d28b7a05f73e9593d3667c76a42857e/rtoml-0.12.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "676ee9f3f60adf30c5f30554609f62bd31914fa3089e8c6c19f2ce8d83f91ee5",
"md5": "3e04995310a792c9fd3a71669589952d",
"sha256": "9d5564dcc5ca1755f5bae59e036fb4e255ed59a9f8af836eb2d9765d125b11bb"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "3e04995310a792c9fd3a71669589952d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 521075,
"upload_time": "2024-12-09T17:02:18",
"upload_time_iso_8601": "2024-12-09T17:02:18.564613Z",
"url": "https://files.pythonhosted.org/packages/67/6e/e9f3f60adf30c5f30554609f62bd31914fa3089e8c6c19f2ce8d83f91ee5/rtoml-0.12.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c997aaf3386a8b2c0763f1e1fa8e5a302611289399f8ecb2a67beef9ff09ae64",
"md5": "443d91ba5934212f35b93814c7be839d",
"sha256": "fe180b78d026499ee3b42c368a6c060a3d5b23838f17dde42d099839a8f8a2c6"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "443d91ba5934212f35b93814c7be839d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 220215,
"upload_time": "2024-12-09T17:02:20",
"upload_time_iso_8601": "2024-12-09T17:02:20.971619Z",
"url": "https://files.pythonhosted.org/packages/c9/97/aaf3386a8b2c0763f1e1fa8e5a302611289399f8ecb2a67beef9ff09ae64/rtoml-0.12.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29cee4f54612e662c4803816ea65cee8eacd13f2919be068b65ef7f459d772d7",
"md5": "e3e896077deb31a1e04f459013bb4d9b",
"sha256": "b7c6bdc9128c0a4ebf45e6720ae03c99ed7443a7135e494d93d3c30c14769eb3"
},
"downloads": -1,
"filename": "rtoml-0.12.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "e3e896077deb31a1e04f459013bb4d9b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 225518,
"upload_time": "2024-12-09T17:02:23",
"upload_time_iso_8601": "2024-12-09T17:02:23.189323Z",
"url": "https://files.pythonhosted.org/packages/29/ce/e4f54612e662c4803816ea65cee8eacd13f2919be068b65ef7f459d772d7/rtoml-0.12.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "879359e1dc9829eafbfb349b1ff2dcfca647d7f7e7d87788de54ab0e402c7036",
"md5": "757108de14aefe53d22e8fcc3ebf283f",
"sha256": "662e56bd5953ee7ebcc5798507ae90daa329940a5d5157a48f3d477ebf99c55b"
},
"downloads": -1,
"filename": "rtoml-0.12.0.tar.gz",
"has_sig": false,
"md5_digest": "757108de14aefe53d22e8fcc3ebf283f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 43127,
"upload_time": "2024-12-09T17:02:24",
"upload_time_iso_8601": "2024-12-09T17:02:24.657590Z",
"url": "https://files.pythonhosted.org/packages/87/93/59e1dc9829eafbfb349b1ff2dcfca647d7f7e7d87788de54ab0e402c7036/rtoml-0.12.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-09 17:02:24",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "sponsors",
"github_project": "samuelcolvin",
"github_not_found": true,
"lcname": "rtoml"
}