initial commit

This commit is contained in:
Marco Thomas
2022-07-27 12:12:05 +02:00
commit 0b29bdab3d
6 changed files with 275 additions and 0 deletions

21
main.py Normal file
View File

@@ -0,0 +1,21 @@
"""
Run program from here.
Requires: python > 3.10.x
"""
from parser import parse
from dijkstra import create_graph
INPUTFILE = "file.txt"
def main():
dataset: dict = parse(INPUTFILE)
print(dataset)
graph: dict = create_graph(dataset)
print(graph)
if __name__ == "__main__":
main()