Name Description Size
__init__.py 1282
_compat.py 513
_types.py Adds MutableSequence mixin while pretending to be a builtin list 2619
_utils.py 4089
api.py Parses a string into a TOMLDocument. Alias for parse(). 7811
container.py A container for items within a TOMLDocument. This class implements the `dict` interface with copy/deepcopy protocol. 31685
exceptions.py This error occurs when the parser encounters a syntax error in the TOML being parsed. The error references the line and location within the line where the error was encountered. 5703
items.py Create a TOML item from a Python object. :Example: >>> item(42) 42 >>> item([1, 2, 3]) [1, 2, 3] >>> item({'a': 1, 'b': 2}) a = 1 b = 2 56286
parser.py Parser for TOML documents. 38080
py.typed 0
source.py State preserver for the Parser. 4835
toml_char.py Whether the character is a valid bare key name or not. 1291
toml_document.py A TOML document. 110
toml_file.py Represents a TOML file. :param path: path to the TOML file 1659