-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
41 lines (31 loc) · 1.18 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import json
from commandParser import CommandParser
def enumerate_available_tables(available_tables):
print("\nAvailable tables:")
for index, table_name in enumerate(available_tables, start=1):
print(f"{index}. {table_name}")
def main():
print("""
__ _ _ _ ___ _ __ _ _
/ _` | | | | | / _ \ | '__| | | | |
| (_| | | |_| | | __/ | | | |_| |
\__, | \__,_| \___| |_| \__, |
_ _|_| _ __ ___ ___ |___/ ___ ___ _ __
| '_ \ | '__| / _ \ / __| / _ \ / __| / _ \ | '__|
| |_) | | | | (_) | | (__ | __/ \__ \ | (_) | | |
| .__/ |_| \___/ \___| \___| |___/ \___/ |_|
|_|
""")
file_name = 'data.json'
with open(file_name, 'r') as file:
data = json.load(file)
# call parser constructor
parser = CommandParser(data)
while True:
command = input("Enter query:")
if command.lower() == 'exit':
break
parser.parse(command)
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
main()