-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
36 lines (27 loc) · 1.03 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
import sys
import getopt
from launchers import config_launcher, query_launcher
def show_usage():
print('Usage:\n\'main.py -q <query>\' to run with query\n\'main.py -q <config>\' to run with config file')
print('Without params app runs with \'application.conf\' file as config')
sys.exit()
def run_application_by_params(argv):
query = None
config_file_path = 'application.conf'
excel_output = False
opts, args = getopt.getopt(argv, "hxq:c:", ["help", "excel", "query=", "config="])
for opt, arg in opts:
if opt in ('-h', '--help'):
show_usage()
elif opt in ('-q', '--query'):
query = arg
elif opt in ('-c', '--config'):
config_file_path = arg
elif opt in ('-x', '--excel'):
excel_output = True
if query:
query_launcher.start_app_with_query(query, excel_output)
else:
config_launcher.start_app_with_config(config_file_path, excel_output)
if __name__ == "__main__":
run_application_by_params(sys.argv[1:])