中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

configparser解析配置文件

發布時間:2020-08-05 20:04:32 來源:網絡 閱讀:357 作者:DevOperater 欄目:編程語言

1.配置文件

[DEFAULT]
ServerAliveInterval = 45   
Compression = yes
CompressionLevel = 9
ForwardX11 = yes

[bitbucket.org]
User = hg

[topsecret.server.com]
Port = 50022
ForwardX11 = no

2.解析配置文件

>>> import configparser # 導入模塊
>>> config = configparser.ConfigParser()  #實例化(生成對象)
>>> config.sections()  #調用sections方法
[]
>>> config.read('example.ini')  # 讀配置文件(注意文件路徑)
['example.ini']
>>> config.sections() #調用sections方法(默認不會讀取default)
['bitbucket.org', 'topsecret.server.com']
>>> 'bitbucket.org' in config #判斷元素是否在sections列表內
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) # for循環 bitbucket.org 字典的key,注意,DEFAULT中的也會出來,因為DEFAULT中的配置信息默認就是給下面的模塊中的內容使用的
...
user
compressionlevel
serveraliveinterval
compression
forwardx11
>>> config['bitbucket.org']['ForwardX11']
'yes'

3.其他增刪改查方法

 [group1] # 支持的兩種分隔符“=”, “:”
k1 = v1
k2:v2

[group2]
k1 = v1

>>> import configparser

>>> config = configparser.ConfigParser()
>>> config.read('i.cfg')
['i.cfg']

# ########## 讀 ##########
>>> secs = config.sections()
>>> print(secs)
['group1', 'group2']

>>> options = config.options('group2') # 獲取指定section的keys
>>> print(options)
['k1']

>>>item_list = config.items('group2') # 獲取指定 section 的 keys & values ,key value 以元組的形式
>>>print(item_list)
[('k1', 'v1')]

>>>val = config.get('group1','k1') # 獲取指定的key 的value
>>> print(val)
v1

>>>val = config.getint('group1','key')

# ########## 改寫 ##########
>>>sec = config.remove_section('group1') # 刪除section 并返回狀態(true, false)
>>> print(sec)
True

>>>config.write(open('i.cfg', "w")) # 對應的刪除操作要寫入文件才會生效

>>>sec = config.has_section('vita')
>>> print(sec)
False

>>>sec = config.add_section('vita')
>>>config.write(open('i.cfg', "w")) # 
查看內容
[group2]
k1 = v1

[vita]

>>>config.set('group2','k1',"11111")
>>>config.set('group2','k1',"2222")
>>>config.write(open('i.cfg', "w"))
查看內容
[group2]
k1 = 11111
k2 = 222

[vita]

>>>config.remove_option('group2','age')
>>>config.write(open('i.cfg', "w"))
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

咸阳市| 汽车| 湟中县| 巢湖市| 章丘市| 江永县| 石棉县| 灵川县| 怀远县| 达尔| 炎陵县| 汉川市| 安国市| 武山县| 贵定县| 双辽市| 吴忠市| 绥滨县| 江陵县| 马公市| 涿州市| 延寿县| 抚远县| 乳源| 中江县| 来宾市| 嘉鱼县| 金华市| 曲周县| 三都| 郴州市| 屯留县| 丰原市| 从江县| 光泽县| 西吉县| 望江县| 赫章县| 岳普湖县| 修武县| 大理市|