• configparser模块


    Python 解析配置模块之ConfigParser详解

    1.基本的读取配置文件

    -read(filename) 直接读取ini文件内容

    -sections() 得到所有的section,并以列表的形式返回

    -options(section) 得到该section的所有option

    -items(section) 得到该section的所有键值对

    -get(section,option) 得到section中option的值,返回为string类型

    -getint(section,option) 得到section中option的值,返回为int类型,还有相应的getboolean()和getfloat() 函数。

    2.基本的写入配置文件

    -add_section(section) 添加一个新的section

    -set( section, option, value) 对section中的option进行设置,需要调用write将内容写入配置文件。

    3.基本例子

    test.conf

    [a]
    a_key1 = 20
    a_key2 = 10
    [b]
    b_key1 = 121
    b_key2 = b_value2
    b_key3 = $r
    b_key4 = 127.0.0.1
    

    ConfigParser_example.py

     import configparser

    cf = configparser.ConfigParser()
    cf.read("test.conf")  # 读取配置文件内容
    secs = cf.sections()    # 对内容进行划分,得到所有的章节名
    print 'sections:', secs     # 以列表形式打印章节名
    opts = cf.options('a')
    print 'options:', opts  # 以列表形式打印a章节里面的Key
    kvs = cf.items('a')
    print( 'sec_a:', kvs)     # 以列表形式打印a章节的(key, value)
    str_val = cf.get('a', 'a_key1')     # 返回a章节里面key为a_key1的值,返回为string类型
    int_val = cf.getint('a', 'a_key2')  # 返回_a章节里面key为a_key2的值,返回为int类型
    print "value for a's a_key1:", str_val
    print "value for a's a_key2:", int_val
    cf.set("b", "b_key3", "new-$r")     # 章节a里面添加一个key为b_key3,值为new-$r,如果key存在就更新key的值
    cf.set("b", "b_newkey", "new-value")    # 章节b里面添加一个key为b_newkey,值为new-value,key存在就更新key的值
    cf.add_section('a_new_section')     # 新建一个章节a_new_section
    cf.set('a_new_section', 'new_key', 'new_value')     # 章节a_new_section里面新建一个key为new_key,值为new_value
    cf.write(open("test.conf", "w"))    # 把修改写入到文件test.conf中
    

    终端输出:

    sections: ['a', 'b']
    options: ['a_key1', 'a_key2']
    sec_a: [('a_key1', '20'), ('a_key2', '10')]
    value for a's a_key1: 20
    value for a's a_key2: 10
    

    更新后的test.conf

    [a]
    a_key1 = 20
    a_key2 = 10
    [b]
    b_key1 = 121
    b_key2 = b_value2
    b_key3 = new-$r
    b_key4 = 127.0.0.1
    b_newkey = new-value
    [a_new_section]
    new_key = new_value
    

    4.Python的ConfigParser Module中定义了3个类对INI文件进行操作。分别是RawConfigParser、ConfigParser、SafeConfigParser。RawCnfigParser是最基础的INI文件读取类,ConfigParser、SafeConfigParser支持对%(value)s变量的解析。

    设定配置文件test2.conf

    [portal]
    url = http://%(host)s:%(port)s/Portal
    host = localhost
    port = 8080
    

    使用RawConfigParser:

    import ConfigParser
    cf2 = ConfigParser.RawConfigParser()
    print "use RawConfigParser() read"
    cf2.read("test2.conf")  # 读取配置文件内容
    print cf2.get("portal", "url")  # 获得章节portal中key为url的值
    print "use RawConfigParser() write"
    cf2.set("portal", "url12", "%(host)s:%(port)s") # 章节portal中添加一个key为url12,值为%(host)s:%(port)s
    print cf2.get("portal", "url12")    # 获得章节portal中key为url12的内容
    

    终端输出:

    use RawConfigParser() read
    http://%(host)s:%(port)s/Portal
    use RawConfigParser() write
    %(host)s:%(port)s
    

    改用ConfigParser:

    import ConfigParser
    cf3 = ConfigParser.ConfigParser()
    print "use ConfigParser() read"
    cf3.read("test2.conf")
    print cf3.get("portal", "url")
    print "use ConfigParser() write"
    cf3.set("portal", "url12", "%(host)s:%(port)s")
    print cf3.get("portal", "url12")
    

    终端输出:

    use ConfigParser() read
    http://localhost:8080/Portal
    use ConfigParser() write
    localhost:8080
    

    改用SafeConfigParser:

    import ConfigParser
    cf4 = ConfigParser.SafeConfigParser()
    print "use SafeConfigParser() read"
    cf4.read("test2.conf")
    print cf4.get("portal", "url")
    print "use SateConfigParser() write"
    cf4.set("portal", "url2", "%(host)s:%(port)s")
    print cf4.get("portal", "url2")
    

    终端输出(效果同ConfigParser):

    use SafeConfigParser() read
    http://localhost:8080/Portal
    use SateConfigParser() write
    localhost:8080

    来看一个好多软件的常见配置文件格式如下
    [DEFAULT]
    ServerAliveInterval = 45
    Compression = yes
    CompressionLevel = 9
    ForwardX11 = yes
    
    [bitbucket.org]
    User = hg
    
    [topsecret.server.com]
    Port = 50022
    ForwardX11 = no

    解析配置文件

    >>> import configparser
    >>> config = configparser.ConfigParser()
    >>> config.sections()
    []
    >>> config.read('example.ini')
    ['example.ini']
    >>> config.sections()
    ['bitbucket.org', 'topsecret.server.com']
    >>> 'bitbucket.org' in config
    True
    >>> 'bytebong.com' in config
    False
    >>> config['bitbucket.org']['User']
    'hg'
    >>> config['DEFAULT']['Compression']
    'yes'
    >>> topsecret = config['topsecret.server.com']
    >>> topsecret['ForwardX11']
    'no'
    >>> topsecret['Port']
    '50022'
    >>> for key in config['bitbucket.org']: print(key)
    ...
    user
    compressionlevel
    serveraliveinterval
    compression
    forwardx11
    >>> config['bitbucket.org']['ForwardX11']
    'yes'

    其它增删改查语法
    [group1]
    k1 = v1
    k2:v2
    
    [group2]
    k1 = v1
    
    import ConfigParser
    
    config = ConfigParser.ConfigParser()
    config.read('i.cfg')
    
    # ########## 读 ##########
    #secs = config.sections()
    #print secs
    #options = config.options('group2')
    #print options
    
    #item_list = config.items('group2')
    #print item_list
    
    #val = config.get('group1','key')
    #val = config.getint('group1','key')
    
    # ########## 改写 ##########
    #sec = config.remove_section('group1')
    #config.write(open('i.cfg', "w"))
    
    #sec = config.has_section('wupeiqi')
    #sec = config.add_section('wupeiqi')
    #config.write(open('i.cfg', "w"))
    
    
    #config.set('group2','k1',11111)
    #config.write(open('i.cfg', "w"))
    
    #config.remove_option('group2','age')
    #config.write(open('i.cfg', "w"))
     
  • 相关阅读:
    常用git命令及问题解决方法
    angular router-ui
    lodash接触:string-capitalize
    angular-ui-router状态不变刷新页面
    ubuntu安装bower失败的解决方法
    HTTP协议中PUT和POST使用区别 【转载】
    CentOS6.5配置python开发环境之一:CentOS图形化界面显示
    SQL Server 查询Job中的存储过程(转)
    sql 取每月第一天或最后一天
    getdate() 转换格式大全
  • 原文地址:https://www.cnblogs.com/anzhangjun/p/8448653.html
Copyright © 2020-2023  润新知