日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python-ConfigParser模块【读写配置文件】

發布時間:2024/4/13 python 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python-ConfigParser模块【读写配置文件】 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

對python 讀寫配置文件的具體方案的介紹

1,函數介紹

import configParser 如果Configparser無效將導入的configParser 的C小寫

1.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類型

?

1.2.寫入配置文件

?

-add_section(section)?添加一個新的section

-set( section, option, value) 對section中的option進行設置

? 需要調用write將內容寫入配置文件。

?

2,測試實例

?2.1,測試1

  ? ?配置文件test.cfg

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

  

  ?測試文件test.py

# -* - coding: UTF-8 -* - import configParser #生成config對象 conf = configParser.ConfigParser() #用config對象讀取配置文件 conf.read("test.cfg") #以列表形式返回所有的section sections = conf.sections() print 'sections:', sections #sections: ['sec_b', 'sec_a'] #得到指定section的所有option options = conf.options("sec_a") print 'options:', options #options: ['a_key1', 'a_key2'] #得到指定section的所有鍵值對 kvs = conf.items("sec_a") print 'sec_a:', kvs #sec_a: [('a_key1', '20'), ('a_key2', '10')] #指定section,option讀取值 str_val = conf.get("sec_a", "a_key1") int_val = conf.getint("sec_a", "a_key2")print "value for sec_a's a_key1:", str_val #value for sec_a's a_key1: 20 print "value for sec_a's a_key2:", int_val #value for sec_a's a_key2: 10#寫配置文件 #更新指定section,option的值 conf.set("sec_b", "b_key3", "new-$r") #寫入指定section增加新option和值 conf.set("sec_b", "b_newkey", "new-value") #增加新的section conf.add_section('a_new_section') conf.set('a_new_section', 'new_key', 'new_value') #寫回配置文件 conf.write(open("test.cfg", "w"))

  

2.2,測試2

配置文件test.cfg [info] age = 21 name = chen sex = male

 

測試文件test.py

from __future__ import with_statement import configParser config=ConfigParser.ConfigParser() with open("test.cfg","rw") as cfgfile:config.readfp(cfgfile)name=config.get("info","name")age=config.get("info","age")print nameprint ageconfig.set("info","sex","male")config.set("info","age","55")age=config.getint("info","age")print nameprint type(age)print age

?

分析

其中[ ] 中的info是這段配置的名字。

其中age,name都是屬性。

首先,config=ConfigParser.ConfigParser()?得到一個配置config對象.下面打開一個配置文件 cfgfile. 用readfp()讀取這個文件.這樣配置的內容就讀到config對象里面了。

接下來一個問題是如何讀取值.常用的方法是get() 和getint() . get()返回文本. getint()返回整數。

其次,name=config.get(''info'',''name'') ?意思就是.讀取config中info段中的name變量值。

最后講講如何設置值.使用set(段名,變量名,值) 來設置變量.config.set(''info'',''age'',''21'') 表示把info段中age變量設置為21。

?

2.3,測試3

Python的ConfigParser Module中定義了3個類對INI文件進行操作。

分別是RawConfigParser、ConfigParser、SafeConfigParser。

RawCnfigParser是最基礎的INI文件讀取類,ConfigParser、SafeConfigParser支持對%(value)s變量的解析。?

配置文件test.cfg

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

  使用RawConfigParser:

import ConfigParserconf = ConfigParser.RawConfigParser() print "use RawConfigParser() read" conf.read("test.cfg") print conf.get("portal", "url")print "use RawConfigParser() write" conf.set("portal", "url2", "%(host)s:%(port)s") print conf.get("portal", "url2")

  得到輸出

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

  改用ConfigParser

import ConfigParserconf = ConfigParser.ConfigParser() print "use RawConfigParser() read" conf.read("test.cfg") print conf.get("portal", "url")print "use RawConfigParser() write" conf.set("portal", "url2", "%(host)s:%(port)s") print conf.get("portal", "url2")

  得到輸出

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

  改用SafeConfigParser,效果與ConfigParser相同

import ConfigParserconf = ConfigParser.SafeConfigParser() print "use RawConfigParser() read" conf.read("test.cfg") print conf.get("portal", "url")print "use RawConfigParser() write" conf.set("portal", "url2", "%(host)s:%(port)s") print conf.get("portal", "url2")

  

結論:

還是用ConfigParser

?

以前不會排版,最近才學會排版,看著舒服多了 -------------------------------------------------------------------------------------------------------- 來源:http://blog.csdn.net/gexiaobaohelloworld/article/details/7976944

?

?

?

?

?

總結

以上是生活随笔為你收集整理的python-ConfigParser模块【读写配置文件】的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。