package documentation

Undocumented

Module _parser No module docstring; 0/9 constant, 2/23 functions, 1/3 class documented
Module _re No module docstring; 0/4 constant, 1/4 function documented
Module _types Undocumented

From __init__.py:

Exception TOMLDecodeError An error raised if a document is not valid TOML.
Function load Parse TOML from a binary file object.
Function loads Parse TOML from a string.
Variable __version__ Undocumented
__version__: str = (source)

Undocumented

def load(__fp: BinaryIO, *, parse_float: ParseFloat = float) -> dict[str, Any]: (source)

Parse TOML from a binary file object.

def loads(__s: str, *, parse_float: ParseFloat = float) -> dict[str, Any]: (source)

Parse TOML from a string.