def get_descriptions()

in utils/schedule.py [0:0]


def get_descriptions(out_format: Literal["dict", "pandas"] = "dict") -> dict[str, str] | pd.Series:
    """Get the descriptions mapping keyed by event_id (as str).

    Args:
        out_format: "dict" (default) or "pandas" (Series indexed by event_id)
    """
    _ensure_loaded()
    return pd.Series(_cache_descriptions, name="description") if out_format == "pandas" else _cache_descriptions