Python 解析配置模塊之ConfigParser詳解

Python 解析配置模塊之ConfigParser詳解

1.基本的讀取配置文件

-read(filename) 直接讀取ini文件內(nèi)容

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

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

-items(section) 得到該section的所有鍵值對(duì)

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

-getint(section,option) 得到section中option的值,返回為int類型,還有相應(yīng)的getboolean()和getfloat() 函數(shù)。

2.基本的寫入配置文件

-add_section(section) 添加一個(gè)新的section

-set( section, option, value) 對(duì)section中的option進(jìn)行設(shè)置,需要調(diào)用write將內(nèi)容寫入配置文件。

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

cf = ConfigParser.ConfigParser()
cf.read("test.conf")  # 讀取配置文件內(nèi)容
secs = cf.sections()    # 對(duì)內(nèi)容進(jìn)行劃分,得到所有的章節(jié)名
print 'sections:', secs     # 以列表形式打印章節(jié)名
opts = cf.options('a')
print 'options:', opts  # 以列表形式打印a章節(jié)里面的Key
kvs = cf.items('a')
print 'sec_a:', kvs     # 以列表形式打印a章節(jié)的(key, value)
str_val = cf.get('a', 'a_key1')     # 返回a章節(jié)里面key為a_key1的值,返回為string類型
int_val = cf.getint('a', 'a_key2')  # 返回_a章節(jié)里面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")     # 章節(jié)a里面添加一個(gè)key為b_key3,值為new-$r,如果key存在就更新key的值
cf.set("b", "b_newkey", "new-value")    # 章節(jié)b里面添加一個(gè)key為b_newkey,值為new-value,key存在就更新key的值
cf.add_section('a_new_section')     # 新建一個(gè)章節(jié)a_new_section
cf.set('a_new_section', 'new_key', 'new_value')     # 章節(jié)a_new_section里面新建一個(gè)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個(gè)類對(duì)INI文件進(jìn)行操作。分別是RawConfigParser、ConfigParser、SafeConfigParser。RawCnfigParser是最基礎(chǔ)的INI文件讀取類,ConfigParser、SafeConfigParser支持對(duì)%(value)s變量的解析。

設(shè)定配置文件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")  # 讀取配置文件內(nèi)容
print cf2.get("portal", "url")  # 獲得章節(jié)portal中key為url的值
print "use RawConfigParser() write"
cf2.set("portal", "url12", "%(host)s:%(port)s") # 章節(jié)portal中添加一個(gè)key為url12,值為%(host)s:%(port)s
print cf2.get("portal", "url12")    # 獲得章節(jié)portal中key為url12的內(nèi)容

終端輸出:

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
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

推薦閱讀更多精彩內(nèi)容

  • Python 解析配置模塊之ConfigParser詳解 1.基本的讀取配置文件 -read(filename) ...
    君惜丶閱讀 1,549評(píng)論 0 1
  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理,服務(wù)發(fā)現(xiàn),斷路器,智...
    卡卡羅2017閱讀 134,837評(píng)論 18 139
  • Ubuntu的發(fā)音 Ubuntu,源于非洲祖魯人和科薩人的語言,發(fā)作 oo-boon-too 的音。了解發(fā)音是有意...
    螢火蟲de夢(mèng)閱讀 99,467評(píng)論 9 467
  • 責(zé)任除以二等于零,在日常的管理中,管理者需要將工作責(zé)任到人,哪個(gè)工作環(huán)節(jié)出現(xiàn)問題,必須能找到獨(dú)立負(fù)責(zé)的責(zé)任人,也就...
    肉豆須張巍閱讀 140評(píng)論 0 0
  • 2017-02-19 今天很不容易啊,自己寫了一份真正表達(dá)自己內(nèi)心的文章并且在臺(tái)上進(jìn)行了演講雖然沒有脫稿但是進(jìn)步還...
    一隅尋安閱讀 237評(píng)論 0 0