diff --git a/explorer.py b/explorer.py index bacdeee..6d74eeb 100644 --- a/explorer.py +++ b/explorer.py @@ -49,6 +49,7 @@ PARTY_COLOURS: Dict[str, str] = { "DENK": "#00897B", "50PLUS": "#7E57C2", "Volt": "#572AB7", + "ChristenUnie": "#0288D1", "Unknown": "#9E9E9E", } @@ -69,6 +70,29 @@ KNOWN_MAJOR_PARTIES = [ ] +# Parties currently seated in the Tweede Kamer (2023 election cycle). +# Deze zijn de entity_ids zoals opgeslagen in svd_vectors voor window='2025'. +CURRENT_PARLIAMENT_PARTIES: frozenset[str] = frozenset( + { + "PVV", + "VVD", + "NSC", + "BBB", + "D66", + "GroenLinks-PvdA", + "CDA", + "SP", + "ChristenUnie", + "SGP", + "Volt", + "DENK", + "PvdD", + "JA21", + "FVD", + } +) + + # --------------------------------------------------------------------------- # Cached loaders # ---------------------------------------------------------------------------