1. 程式人生 > >configparser 在python3下的簡單使用

configparser 在python3下的簡單使用

oca alt mar imp values ons 註意 rem 格式

1.創建configparser文件

import configparser
    #導入模塊
config = configparser.ConfigParser()  #註意大小寫與()
config[‘DEFAULT‘] = {‘Server‘: ‘45‘, ‘Compression‘: ‘yes‘}
config[‘server‘] = {‘deletehq‘:‘0‘,
                    ‘localtime‘:‘20180706‘,
                    ‘port‘:‘22‘}
config[‘system‘] = {‘market64‘:‘xiadan1.exe‘,
                    ‘market128‘:‘xiadan2.exe‘,
                    ‘market256‘:‘xiadan3.exe‘ }
config[‘client‘] = {}

with open(‘configTest.ini‘, ‘w‘) as configfile:
    config.write(configfile)

或者通過字典創建

config = configparser.ConfigParser()
config.read_dict(   {
                ‘section1‘: {‘key1‘: ‘value1‘,
                                    ‘key2‘: ‘value2‘,
                                    ‘key3‘: ‘value3‘},
                ‘section2‘: {‘keyA‘: ‘valueA‘,
                                 ‘keyB‘: ‘valueB‘,
                                 ‘keyC‘: ‘valueC‘},
                 ‘section3‘: {‘foo‘: ‘x‘,
                                    ‘bar‘: ‘y‘,
                                  ‘fun: ‘z‘}
                                    }   )
with open(‘configTest1.ini‘, ‘w‘) as configfile:
    config.write(configfile)

2.讀取配置文件

config.read(‘configTest.ini‘)
[DEFAULT]
server = 45
compression = yes

[server]
deletehq = 0
localtime = 20180706
port = 22

[system]
market64 = xiadan1.exe
market128 = xiadan2.exe
market256 = xiadan3.exe

[client]

3.讀取操作

獲取所有sections
print(config.sections())
[‘server‘, ‘system‘, ‘client‘]

獲取指定 section 的 keys & values
print(config.items(‘system‘))
[(‘server‘, ‘45‘), (‘compression‘, ‘yes‘), (‘market64‘, ‘xiadan1.exe‘), (‘market128‘, ‘xiadan2.exe‘), (‘market256‘, ‘xiadan3.exe‘)]  # 註意items()返回的字符串會全變成小寫

獲取指定 section 的 keys
print(config.options(‘system‘))
[‘market64‘, ‘market128‘, ‘market256‘, ‘server‘, ‘compression‘] #會打印default中的keys

獲取指定 key 的 value
print(config[‘system‘][‘market64‘])
xiadan1.exe

4.檢查

‘section’ in config

‘option’ in config[‘section‘]

config.has_section[‘section‘]
config.hais_option[‘section‘,‘option‘]

5.添加

config.add_section(‘section4‘) 
config.set(‘section4‘,‘key1‘,‘value1‘)
config.write(open(‘configTest1.ini‘,‘w‘))  #寫入

[section4]
key1 = value1

6.刪除

config.remove_option(‘section4‘,‘key1‘) #刪除option
config.remove_section(‘section4‘) #刪除section

7.[DEFAULT]
[DEFAULT] 一般包含 ini 格式配置文件的默認項,所以 configparser 部分方法會自動跳過這個 section 。 sections() 是獲取不到的,還有刪除方法對 [DEFAULT] 也無效,但指定刪除和修改 [DEFAULT] 裏的 keys & values 是可以的,還有個特殊的是,has_section() 也無效,可以和 in 區別使用。

configparser 在python3下的簡單使用