rtoml icon indicating copy to clipboard operation
rtoml copied to clipboard

A fast TOML library for python implemented in rust.

Results 23 rtoml issues
Sort by recently updated
recently updated
newest added

Building wheel for rtoml (pyproject.toml) did not run successfully. │ exit code: 1 ╰─> [21 lines of output] running bdist_wheel running build running build_py creating build creating build/lib.linux-s390x-cpython-310 creating build/lib.linux-s390x-cpython-310/rtoml...

Hi there, not an expert in python and neither in your library, but let's say coincidentally ran into it. closes #23

Currently, `rtoml` converts fields with value `None` to a value of string "null" in the dumped string. Loading the string back in results in a "null" string in python instead...

Fix #27 to serialize local dates and times

rtoml version: 0.7.0 Running this ```python import rtoml rtoml.dumps(rtoml.loads("time = 23:30:59")) ``` Errors with ``` _rtoml.TomlSerializationError: time is not serializable to TOML: datetime.time(23, 30, 59) ```

The following code, exporting and reimporting a timestamp with millisecond precision fails: ```python from datetime import datetime import rtoml t = datetime.fromisoformat("2020-05-25T12:00:01.123450") d = {"t": t} dumped = rtoml.dumps(d) loaded...

This is a great project, I like it! It would be nice if the releases can contain amd64 wheels for windows too. Otherwise setuptools-rust must be present to continue the...

in docs it says that `load` takes either str, path or TextIO, but doesn't specify which `Path` type it takes.

- fixes Issue #61 - Check if the first element of a list or tuple is a `dict`. If true, order it with the other `dicts`, else put in the...

If passing a byte string or a `rb`-mode opened file, I think this library should be able to handle that input properly. Actually, when parsing files, IMHO it's a better...