13 lines
471 B
Python
13 lines
471 B
Python
"""
|
|
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
|