首页 > 代码库 > ConfigParser Python

ConfigParser Python

import ConfigParserimport os,sysclass Conf_Write_Read():    def __init__(self,src=http://www.mamicode.com/""):        self.src = src        self.cfg = ConfigParser.ConfigParser(allow_no_value=http://www.mamicode.com/True)        self.safecfg = Conf_Write_Read        self.cfg.read(self.src)    def get_conf_section(self):        return self.cfg.sections()    def get_conf_items(self,section):        return self.cfg.items(section)    def get_conf_options(self,section):        return self.cfg.options(section)    def write_conf_section(self,section):        self.cfg.add_section(section)    def write_conf_item(self,section,key,value,dst):        cfg = ConfigParser.SafeConfigParser()        cfg.set(section,key,value)        with open(dst,wb) as cfgFile:            cfg.write(cfgFile)

 

ConfigParser Python