From cf0108f79a63f1fc99c697ec6cb8b5d442838267 Mon Sep 17 00:00:00 2001 From: mia Date: Wed, 8 Apr 2026 12:25:36 +0200 Subject: [PATCH] Added basic imports and description --- main.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..bc3187c --- /dev/null +++ b/main.py @@ -0,0 +1,13 @@ +""" +haTerm - v0.1 +(c) Kieler Mia, Chiara Wohlwend, Sophia Schmidhofer + +haTerm is a Terminal Based hafas client, using the ivb endpoint. +Prompt_toolkit (https://github.com/prompt-toolkit/python-prompt-toolkit) will be used to render a terminal user interface (TUI). +The application will provide routing information and station departures/arrivals. +""" + +import requests +import json +from prompt_toolkit import Application +from prompt_toolkit.completion import WordCompleter