标签:style blog io ar color os sp on div
import ConfigParser import os,sys class Conf_Write_Read(): def __init__(self,src=""): self.src = src self.cfg = ConfigParser.ConfigParser(allow_no_value=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)
标签:style blog io ar color os sp on div
原文地址:http://www.cnblogs.com/jachin/p/4133723.html