-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
40 lines (29 loc) · 835 Bytes
/
config.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
def read():
keys = dict()
f = open('config.ini')
data = f.readlines()
f.close()
if data[-1:][0] != '\n':
raise ImportError('There has to be a new line at the end of the config.ini file!')
for line in data:
if line[0] in '#\n':
continue
temp = ''
keyname = None
for char in line:
if char == '=':
keyname = temp
temp = ''
elif char in '#\n':
if temp.isdecimal():
temp = int(temp)
elif temp.isdigit():
temp = float(temp)
keys[keyname] = temp
if char == '#':
break
else:
temp += char
return keys
if __name__ == '__main__':
print(read())