-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.py
30 lines (28 loc) · 901 Bytes
/
util.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
import config as cfg
class ScriptReader(object):
@staticmethod
def getColumns(filename):
f = open(filename)
result = []
for value in f.readlines():
if value[0] != '#':
result.append(value.strip())
f.close()
return result
@staticmethod
def getHeader(filename):
precision = cfg.floatPrecision
f = open(filename)
result = []
for value in f.readlines():
if value[0] == '#':
if '#precision:' in value:
tmp = value.split(':')[1].strip()
if tmp == cfg.doublePrecision :
precision = tmp
else:
result.append(value)
f.close()
if len(result) == 0:
return precision, None
return precision, result