網站首頁 編程語言 正文
configparser中默認值的設定
在做某一個項目時,在讀配置文件中,當出現配置文件中沒有對應項目時,如果要設置默認值,以前的做法是如下的:
try: ? ? apple = config.get(section, 'apple') except NoSectionError, NoOptionError: ? ? apple = None
但當存在很多配置時,這種寫法太糟糕
幸好,在Configparser.get()函數中有一個vars()的參數,可以自定義;注:只能用ConfigParser.ConfigParser;rawconfigparser是不支持的
解決方案
1、定義函數:
class DefaultOption(dict): ? ? def __init__(self, config, section, **kv): ? ? ? ? self._config = config ? ? ? ? self._section = section ? ? ? ? dict.__init__(self, **kv) ? ? def items(self): ? ? ? ? _items = [] ? ? ? ? for option in self: ? ? ? ? ? ? if not self._config.has_option(self._section, option): ? ? ? ? ? ? ? ? _items.append((option, self[option])) ? ? ? ? ? ? else: ? ? ? ? ? ? ? ? value_in_config = self._config.get(self._section, option) ? ? ? ? ? ? ? ? _items.append((option, value_in_config)) ? ? ? ? return _items
2、使用
def read_config(section, location): ? ? config = configparser.ConfigParser() ? ? config.read(location) ? ? apple = config.get(section, 'apple', ? ? ? ? ? ? ? ? ? ? ? ?vars=DefaultOption(config, section, apple=None)) ? ? pear = config.get(section, 'pear', ? ? ? ? ? ? ? ? ? ? ? vars=DefaultOption(config, section, pear=None)) ? ? banana = config.get(section, 'banana', ? ? ? ? ? ? ? ? ? ? ? ? vars=DefaultOption(config, section, banana=None)) ? ? return apple, pear, banana
這樣就很好解決了讀取配置文件時沒有option時自動取默認值,而不是用rasie的方式取默認值
此方案來之stackoverflow
使用configparser的注意事項
以這個非常簡單的典型配置文件為例:
[DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ForwardX11 = yes [bitbucket.org] User = hg [topsecret.server.com] Port = 50022 ForwardX11 = no
1、config parser 操作跟dict 類似,在數據存取方法基本一致
>> 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'
2、默認配置項[DEFAULT]section 的默認參數會作用于其他Sections
3、數據類型
- config parsers 不會猜測或自動分析識別config.ini參數的數據類型,都會按照字符串類型存儲,如果需要讀取為其他數據類型,需要自定義轉換。
- 特殊bool值:對于常見的布爾值’yes’/‘no’, ‘on’/‘off’, ‘true’/‘false’ 和 ‘1’/‘0’,提供了getboolean()方法。
4、獲取參數值方法 get()
- 使用get()方法獲取每一參數項的配置值。
- 如果一般Sections 中參數在[DEFAULT]中也有設置,則get()到位[DEFAULT]中的參數值。
5、參數分隔符可以使用‘=’或‘:’(默認)
6、可以使用‘#’或‘;’(默認)添加備注或說明?
[Simple Values] key=value spaces in keys=allowed spaces in values=allowed as well spaces around the delimiter = obviously you can also use : to delimit keys from values [All Values Are Strings] values like this: 1000000 or this: 3.14159265359 are they treated as numbers? : no integers, floats and booleans are held as: strings can use the API to get converted values directly: true [Multiline Values] chorus: I'm a lumberjack, and I'm okay I sleep all night and I work all day [No Values] key_without_value empty string value here = [You can use comments] # like this ; or this # By default only in an empty line. # Inline comments can be harmful because they prevent users # from using the delimiting characters as parts of values. # That being said, this can be customized. [Sections Can Be Indented] can_values_be_as_well = True does_that_mean_anything_special = False purpose = formatting for readability multiline_values = are handled just fine as long as they are indented deeper than the first line of a value # Did I mention we can indent comments, too?
7、寫配置
常見做法:
config.write(open('example.ini', 'w'))
合理做法:
with open('example.ini', 'w') as configfile: ? ? config.write(configfile)
注意要點
1、ConfigParser 在get 時會自動過濾掉‘#’或‘;‘注釋的行(內容);
- 一般情況下我們手工會把配置中的暫時不需要的用‘#‘注釋,問題在于,Configparser 在wirte的時候同file object行為一致,如果將注釋’#‘的配置經過get后,再wirte到conf,那么’#‘的配置就會丟失。
- 那么就需要一個策略或規(guī)則,配置需不需要手工編輯 ?還是建立復雜的對原生文本的處理的東西,我建議是管住手,避免將一些重要的配置爆露給用戶編輯,切記行內注釋和Section內注釋。
- 有一個相對簡單的方法是:
- 對單獨在一行的代碼,你可以在讀入前把"#", ";"換成其他字符如’@’,或‘^’(在其bat等其他語言中用的注釋符易于理解),使用allow_no_value選項,這樣注釋會被當成配置保存下來,處理后你再把“#”, ";"換回來。
2、在ConfigParser write之后,配置文本如果有大寫字母’PRODUCT’會變?yōu)樾懽帜浮痯roduct’,并不影響配置的正確讀寫。?
原文鏈接:https://www.cnblogs.com/landhu/p/9456095.html
相關推薦
- 2022-05-31 如何使用正則表達式判斷郵箱(以C#為例)_C#教程
- 2022-10-08 如何在React項目中引入字體文件并使用詳解_React
- 2022-07-26 對Python中GIL(全局解釋器鎖)的一點理解淺析_python
- 2023-03-21 Mongodb?用戶權限管理及配置詳解_MongoDB
- 2022-02-14 jquery-選擇器、篩選器、樣式操作、文本操作、屬性操作、文檔處理
- 2022-03-04 如何在uni-app中選擇一個合適的UI組件庫
- 2023-02-07 C++內存模型與名稱空間概念講解_C 語言
- 2022-06-13 ASP.NET?Core中的Caching組件簡介_實用技巧
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細win安裝深度學習環(huán)境2025年最新版(
- Linux 中運行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎操作-- 運算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認證信息的處理
- Spring Security之認證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權
- redisson分布式鎖中waittime的設
- maven:解決release錯誤:Artif
- restTemplate使用總結
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實現加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務發(fā)現-Nac
- Spring Security之基于HttpR
- Redis 底層數據結構-簡單動態(tài)字符串(SD
- arthas操作spring被代理目標對象命令
- Spring中的單例模式應用詳解
- 聊聊消息隊列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠程分支