---------------------------------------------------------------------- This is the API documentation for the gdtest_ug_mixed_subdir_order library. ---------------------------------------------------------------------- ## Functions Utility functions process(data: 'list[str]', *, strict: 'bool' = False) -> 'list[str]' Process a list of items. Parameters ---------- data : list[str] Items to process. strict : bool Raise on invalid items when True. Returns ------- list[str] Processed items. validate(value: 'str') -> 'bool' Validate a single value. Parameters ---------- value : str The value to validate. Returns ------- bool True if the value is valid. ---------------------------------------------------------------------- This is the User Guide documentation for the package. ---------------------------------------------------------------------- # Overview This package provides simple data processing utilities. # Usage Import and call `process()` with a list of strings. ```python from gdtest_ug_mixed_subdir_order import process result = process(["hello", " world "]) ``` ### Setup Everything you need to install and configure the package. ### Advanced Topics Advanced configuration and extension patterns. ## Installing ```bash pip install gdtest-ug-mixed-subdir-order ``` ## Performance Tips Pass `strict=True` to `process()` to catch malformed inputs early.