---------------------------------------------------------------------- This is the API documentation for the gdtest_display_badges library. ---------------------------------------------------------------------- ## Functions Utility functions badge(label: str, value: str) -> str Create a badge string from a label and value. Parameters ---------- label : str The badge label text. value : str The badge value text. Returns ------- str A formatted badge string. Examples -------- >>> badge("version", "0.1.0") 'version: 0.1.0' shield(name: str) -> dict Get shield metadata by name. Parameters ---------- name : str The shield name to look up. Returns ------- dict A dictionary with shield metadata. Examples -------- >>> shield("python") {'name': 'python', 'color': 'green'}