From: Philipp Spitzer Date: Tue, 23 Jan 2024 19:34:22 +0000 (+0100) Subject: API version 1.5.0 is not supported anymore. Switch to 1.8.0. X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wrpylib.git/commitdiff_plain/2c3658d148551c4fa36f3d1177ad18641a3fcc60 API version 1.5.0 is not supported anymore. Switch to 1.8.0. --- diff --git a/wrpylib/vao.py b/wrpylib/vao.py index 086d53e..74edfdf 100644 --- a/wrpylib/vao.py +++ b/wrpylib/vao.py @@ -5,7 +5,7 @@ class Vao: def __init__(self, access_id: str): self.access_id = access_id self.base_url = 'https://routenplaner.verkehrsauskunft.at/vao/restproxy' - self.version = '1.5.0' + self.version = '1.8.0' def get(self, end_point: str, parameter: dict): params = {'accessId': self.access_id, 'format': 'json'}