码迷,mamicode.com
首页 > 编程语言 > 详细

ConfigParser Python

时间:2014-11-30 22:58:00      阅读:261      评论:0      收藏:0      [点我收藏+]

标签: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)

 

ConfigParser Python

标签:style   blog   io   ar   color   os   sp   on   div   

原文地址:http://www.cnblogs.com/jachin/p/4133723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!