Python configparser模塊常用方法解析
ConfigParser模塊在python中用來(lái)讀取配置文件,配置文件的格式跟windows下的ini配置文件相似,可以包含一個(gè)或多個(gè)節(jié)(section), 每個(gè)節(jié)可以有多個(gè)參數(shù)(鍵=值)。使用的配置文件的好處就是不用在程序員寫(xiě)死,可以使程序更靈活。
注意:在python 3 中ConfigParser模塊名已更名為configparser
configparser函數(shù)常用方法:
讀取配置文件:
read(filename) #讀取配置文件,直接讀取ini文件內(nèi)容
sections() #獲取ini文件內(nèi)所有的section,以列表形式返回[’logging’, ’mysql’]
options(sections) #獲取指定sections下所有options ,以列表形式返回[’host’, ’port’, ’user’, ’password’]
items(sections) #獲取指定section下所有的鍵值對(duì),[(’host’, ’127.0.0.1’), (’port’, ’3306’), (’user’, ’root’), (’password’, ’123456’)]
get(section, option) #獲取section中option的值,返回為string類型>>>>>獲取指定的section下的option <class ’str’> 127.0.0.1
getint(section,option) 返回int類型getfloat(section, option) 返回float類型getboolean(section,option) 返回boolen類型
舉例如下:
配置文件ini如下:
[logging]level = 20path =server =
[mysql]host=127.0.0.1port=3306user=rootpassword=123456
注意,也可以使用:替換=
代碼如下:
import configparserfrom until.file_system import get_init_pathconf = configparser.ConfigParser()file_path = get_init_path()print(’file_path :’,file_path)conf.read(file_path)sections = conf.sections()print(’獲取配置文件所有的section’, sections)options = conf.options(’mysql’)print(’獲取指定section下所有option’, options)items = conf.items(’mysql’)print(’獲取指定section下所有的鍵值對(duì)’, items)value = conf.get(’mysql’, ’host’)print(’獲取指定的section下的option’, type(value), value)
運(yùn)行結(jié)果如下:
file_path : /Users/xxx/Desktop/xxx/xxx/xxx.ini獲取配置文件所有的section [’logging’, ’mysql’]獲取指定section下所有option [’host’, ’port’, ’user’, ’password’]獲取指定section下所有的鍵值對(duì) [(’host’, ’127.0.0.1’), (’port’, ’3306’), (’user’, ’root’), (’password’, ’123456’)]獲取指定的section下的option <class ’str’> 127.0.0.1
綜合使用方法:
import configparser'''讀取配置文件信息'''class ConfigParser(): config_dic = {} @classmethod def get_config(cls, sector, item): value = None try: value = cls.config_dic[sector][item] except KeyError: cf = configparser.ConfigParser() cf.read(’settings.ini’, encoding=’utf8’) #注意setting.ini配置文件的路徑 value = cf.get(sector, item) cls.config_dic = value finally: return valueif __name__ == ’__main__’: con = ConfigParser() res = con.get_config(’logging’, ’level’) print(res)
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. XML解析錯(cuò)誤:未組織好 的解決辦法2. XML入門(mén)的常見(jiàn)問(wèn)題(一)3. HTML5 Canvas繪制圖形從入門(mén)到精通4. css代碼優(yōu)化的12個(gè)技巧5. 詳解瀏覽器的緩存機(jī)制6. asp知識(shí)整理筆記4(問(wèn)答模式)7. XML入門(mén)的常見(jiàn)問(wèn)題(四)8. asp批量添加修改刪除操作示例代碼9. 微信開(kāi)發(fā) 網(wǎng)頁(yè)授權(quán)獲取用戶基本信息10. javascript xml xsl取值及數(shù)據(jù)修改第1/2頁(yè)
