---------------------------------------------------------------------- This is the API documentation for the gdtest_ug_with_code library. ---------------------------------------------------------------------- ## Functions Utility functions process(data: list) -> list Process a list of data items. Parameters ---------- data : list The input data to process. Returns ------- list The processed data. Examples -------- >>> process([1, 2, 3]) [2, 4, 6] transform(data: dict) -> dict Transform a dictionary of data. Parameters ---------- data : dict The input dictionary to transform. Returns ------- dict The transformed dictionary. Examples -------- >>> transform({"key": "value"}) {'key': 'VALUE'} ---------------------------------------------------------------------- This is the User Guide documentation for the package. ---------------------------------------------------------------------- # Getting Started Here's a basic example that runs and prints output: ```{python} from gdtest_ug_with_code.core import process result = process([1, 2, 3]) print(result) ``` And a fenced (non-executable) code block showing a transform: ```python from gdtest_ug_with_code.core import transform data = {"key": "value"} output = transform(data) print(output) # {'key': 'VALUE'} ```