blob: f9cd4404f5c26968e2749320b6d441486922ccc1 (
plain)
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
|
#getconf = make_getconf("dateiname.json")
#getconf(key) -> value
#oder error
import imp
import os
def make_getconf(filename):
def getconf(prop):
prop_split = prop.split('.')
string = ''
config = load_config(filename)
#imp.reload(config)
tmp = config.__dict__
for pr in prop_split:
tmp = tmp[pr]
return tmp
return getconf
def load_config(filename):
dirname = os.path.dirname(filename)
modname, ext = os.path.splitext(os.path.basename(filename))
file, pathname, description = imp.find_module(modname, [ dirname ])
return imp.load_module(modname, file, pathname, description)
|