Help for cdv.load_all

cdv ยท load_all

Sample CLI

gway cdv load-all

References

Full Code

def load_all(pathlike: str) -> dict[str, dict[str, str]]:
    """Load CDV table with ID followed by colon-separated key=value fields."""
    try:
        path = _resolve_path(pathlike)
        return _read_table(path)
    except Exception as e:
        gw.abort(f"Failed to read table '{pathlike}': {e}")