Exemplo n.º 1
0
 def __init__(self, file_path, graph_params = None):
     self.mcp = IConfigParser(dict_type=OrderedDict)
     self.mcp.readfp(open(file_path))
     self.file_path = file_path
     self.layers = dict()
     self.network_config = dict()
     self.parse(self.mcp)
Exemplo n.º 2
0
def test1():
    file_path = '/home/grads/sijinli2/Projects/DHMLPE/doc/netdef/dhmlpe-layer-def-t0.cfg'
    a = IConfigParser(dict_type=OrderedDict)
    a.readfp(open(file_path))
    for name in a.sections():
        print 'Section name {}'.format(name)
        if a.has_option(name, 'type'):
            e = a.safe_get(name, 'type')
            print '    type is {}'.format(e)
Exemplo n.º 3
0
def test2():
    file_path = '/opt/visal/tmp/for_sijin/tmp/t.cfg'
    a = IConfigParser(dict_type=OrderedDict)
    a.readfp(open(file_path))
    for name in a.sections():
        print 'Section name {}'.format(name)
        e = a.safe_get_tuple_list(name, 'L')
        print e
        print '----------'
        e1 = a.safe_get_tuple_int_list(name, 'L')
        print e1