Patch pyproject reading¶
From setuptools-scm (MIT)
- class drain_swamp.monkey.pyproject_reading.TOML_RESULT¶
- class drain_swamp.monkey.pyproject_reading.TOML_LOADER¶
- drain_swamp.monkey.pyproject_reading.TOML_LOADER: collections.abc.Callable[[str], TOML_RESULT]
A function that takes raw TOML str and converts into a TOML dict
- drain_swamp.monkey.pyproject_reading.__all__: tuple[str, str, str, str] = ("TOML_LOADER", "TOML_RESULT", "read_toml_content", "load_toml_or_inline_map")¶
Module exports
See also
- drain_swamp.monkey.pyproject_reading.load_toml_or_inline_map(data)¶
Load toml data - with a special hack if only an inline map is given
This is a verified, in the unittest, inline map
'{project = {name = "proj", version = "0.0.1"}}'
- drain_swamp.monkey.pyproject_reading.read_toml_content(path, default=None)¶
Read a file if not found can return default. If found load file data as TOML
- Parameters:
path¶ (pathlib.Path) – absolute path to a TOML file
default¶ (drain_swamp.monkey.pyproject_reading.TOML_RESULT | None) – Default None. Allow some fallback if cannot load the TOML file.
- Returns:
TOML as a dict
- Return type:
- Raises:
FileNotFoundError
– TOML file not found. Check the absolute pathtomllib.TOMLDecodeError
– TOML parse error