---------------------------------------------------------------------- This is the API documentation for the gdtest_seealso_desc library. ---------------------------------------------------------------------- ## Functions Utility functions load(path: str) -> dict Load data from a file. %seealso save : Write data back to a file, validate : Check data integrity Parameters ---------- path The file path to read from. Returns ------- dict The loaded data. save(data: dict, path: str) -> None Save data to a file. %seealso load : Read data from a file, transform : Transform data before saving Parameters ---------- data The data to save. path The file path to write to. transform(data: dict) -> dict Transform data before processing. %seealso validate : Check data integrity first Parameters ---------- data The data to transform. Returns ------- dict The transformed data. validate(data: dict) -> bool Validate data integrity. %seealso load, save Parameters ---------- data The data to validate. Returns ------- bool True if valid.