-
Notifications
You must be signed in to change notification settings - Fork 3
/
__main__.py
56 lines (44 loc) · 1.22 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from os import path
import sys
CONFIG_FILE = "poisonoak/poisonoak.config"
HELP_FILE = "poisonoak/poisonoak.help"
def trim(text):
'''
Remove the spaces between text
Parameters
----------
text : string
text with white spaces
Returns
-------
string
text without white spaces
'''
return text.replace(" ", "").replace("\n","")
def read_config():
'''
Read the config file to check everything is there
Returns
-------
boolean
True if all the variables are defined and correct
'''
if (path.exists(CONFIG_FILE)):
with open(CONFIG_FILE) as config:
for line in config.readlines():
if len(line) > 10:
var, value = trim(line).split("=")
if var == "RTL" and path.exists(value):
print (value, "CHECK")
else:
print(f"Option {var} is incorrect")
return False
return True
else:
print("Config File does not exists!")
for arg in sys.argv:
if (arg == "-h" or arg == "--help"):
with open(HELP_FILE) as help:
print(help.read())
else:
read_config()