added basic connection between the files, fixed small issues. some parts were achieved using ai.

This commit is contained in:
mia 2026-06-03 10:42:35 +02:00
parent dd5816b175
commit 45e5cadc62
4 changed files with 184 additions and 63 deletions

View file

@ -13,7 +13,7 @@ from datetime import datetime
from prompt_toolkit import Application
from prompt_toolkit.completion import WordCompleter
class hafasClient:
class HafasClient:
def __init__(self):
self.session = requests.session()
self.clientInfo = {"id": "VAO", "name": "webapp", "type": "WEB"}
@ -90,5 +90,5 @@ class hafasClient:
if __name__ == '__main__':
client = hafasClient()
client = HafasClient()
client.runTests()