pep518 parser¶
pyproject.toml
parsing. text –> dict
- drain_swamp.parser_in._logger: logging.Logger¶
Module level logger
- class drain_swamp.parser_in.TomlParser(path, raise_exceptions=False)¶
Reverse searches for a
pyproject.toml
file and parses it.Interface provides both the dict and the resolved absolute path
- Variables:
- Raises:
drain_swamp.exceptions.PyProjectTOMLReadError
– pyproject.toml either doesn’t exist or inaccessibledrain_swamp.exceptions.PyProjectTOMLParseError
– pyproject.toml unparsable
- property d_pyproject_toml¶
Getter pyproject.toml dict.
- Returns:
pyproject.toml dict. Not set if constructor raised an Exception
- Return type:
collections.abc.Mapping[str, Any] | None
- property path_file¶
Absolute Path to
pyproject.toml
.- Returns:
Absolute Path to
pyproject.toml
file. Not set if constructor raised an Exception- Return type:
pathlib.Path | None
- classmethod read(path_config)¶
Read the current contents of
pyproject.toml
file.- Parameters:
path_config¶ (pathlib.Path) –
pyproject.toml
folder path- Returns:
pyproject.toml
dict and resolved path to file- Return type:
tuple[dict[str, Any], pathlib.Path]
- Raises:
drain_swamp.exceptions.PyProjectTOMLParseError
– either not found or cannot be parseddrain_swamp.exceptions.PyProjectTOMLReadError
– Either not a file or lacks read permission
- classmethod resolve(path_config)¶
Reverse search for a
pyproject.toml
file.Leverages reverse search algo from Python package, black
- Parameters:
path_config¶ (Any | None) – Starting absolute path to reserve search for a
pyproject.toml
. Expecting an absolute path either: Path or str- Returns:
absolute path to a pyproject.toml
- Return type:
- Raises:
TypeError
– Start search path unsupported typeFileNotFoundError
– Reverse search pyproject.toml not found