"""Asynchronous Python client providing Open Data information of Amsterdam.""" from __future__ import annotations PARKING_GARAGE_URL = "https://p-info.vorin-amsterdam.nl/v1/ParkingLocation.json" PARKING_SPOT_URL = "https://api.data.amsterdam.nl/v1/parkeervakken/parkeervakken" FILTER_OUT: list[str] = [ "Dummy", "Test_Dome", ] FILTER_NAMES: list[str] = [ "CE-", "ZD-", "ZO-", "ZU-", "FJ212P34 ", "VRN-FJ212", "GRV020HNK ", " P ", " P4", " P5", " P21", " P22", " P23", " P24", "PR-", "DP-", "AM-", ] FILTER_UNKNOWN: list[str] = [ "ONBEKEND", "Onbekend", ] CORRECTIONS: list[str] = [ "P1 ", "P3 ", ]