better_launch.toml.toml_parser module

class better_launch.toml.toml_parser.TomlReader(text: str | list[str])

Bases: object

parse() dict[str, Any]

Parse TOML text and return a dictionary.

better_launch.toml.toml_parser.load(path: str) dict[str, Any]

Read the contents of a TOML file and parse them.

better_launch.toml.toml_parser.loads(text: str) dict[str, Any]

Parse TOML text and return a dictionary.