溫馨提示×

溫馨提示×

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

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

python configparser

發(fā)布時間:2020-08-18 09:29:57 來源:網(wǎng)絡(luò) 閱讀:486 作者:聽砜 欄目:編程語言

configparser模塊操作

config.ini 配置文件

[user]
user_name = root
password = 1234
money = 26985.4578

[connect]
ip = 127.0.0.1
port = 8888

[mysql]
ip = 192.168.11.122
port = 3369

[mysql_connect]
is_true = true
is_false = false

[redis]
name = 192.168.1.22

py 文件

import configparser

# 生成 ConfigParser對象
config = configparser.ConfigParser()

# 讀取配置文件
file_name = 'config.ini'

config.read(filenames=file_name, encoding='utf-8')

# 獲取所有節(jié)點sections, 以列表形式返回config parser對象的所有節(jié)點信息
all_sections = config.sections()
print(all_sections)  # ['user', 'connect', 'mysql', 'mysql_connect']

# 獲取指定節(jié)點的的所有配置信息,以列表形式返回某個節(jié)點section對應(yīng)的所有配置信息
user = config.items('user')
print(user)  # [('user_name', 'root'), ('password', 'root')]

# 獲取指定節(jié)點的options, 以列表形式返回某個節(jié)點section的所有key值
user = config.options('user')
print(user)  # ['user_name', 'password', 'money']

# 獲取指定節(jié)點下指定option的值
# ConfigParserObject.get(section, option)
# 返回結(jié)果是字符串類型
name = config.get('user', 'user_name')
print(name, type(name))  # root <class 'str'>

# ConfigParserObject.getint(section, option)
# 返回結(jié)果是int類型
password = config.getint('user', 'password')
print(password, type(password))  # 1234 <class 'int'>

# ConfigParserObject.getboolean(section, option)
# 返回結(jié)果是bool類型
is_true = config.getboolean('mysql_connect', 'is_true')
print(is_true, type(is_true))  # True <class 'bool'>

# ConfigParserObject.getfloat(section, option)
# 返回結(jié)果是float類型
money = config.getfloat('user', 'money')
print(money, type(money))  # 26985.4578 <class 'float'>

# 檢查section或option是否存在, 返回bool值,若存在返回True,不存在返回False

# 檢查section是否存在
result = config.has_section('user_name')
print(result)  # False

result = config.has_section('user')
print(result)  # True

# 檢查option是否存在
result = config.has_option('user', 'user_name')
print(result)  # True

result = config.has_option('user', 'root')
print(result)  # False

# 添加section
# 如果section不存在,則添加節(jié)點section;
# 若section已存在,再執(zhí)行add操作會報錯configparser.DuplicateSectionError: Section XX already exists
if not config.has_section('redis'):
    config.add_section('redis')
config.set('redis', 'name', '192.168.1.22')
f = open('config.ini', 'w')
config.write(f)
f.close()
redis = config.items('redis')
print(redis)  # [('name', '192.168.1.22')], config.ini 會多出來增加的section

# 修改或添加指定節(jié)點下指定option的值
# 若option存在,則會替換之前option的值為value, 若option不存在,則會創(chuàng)建option并賦值為value

# 修改指定option的值
config.set('user', 'user_name', 'root')
config.set('user', 'user_name', 'tingfeng')
f = open('config.ini', 'w')
config.write(f)
f.close()

# 重新查看修改后節(jié)點信息
items = config.items('user')
print(items)  # [('user_name', 'tingfeng'), ('password', '1234'), ('money', '26985.4578')]

# 刪除section或option
# ConfigParserObject.remove_section(section)
# 若section存在,執(zhí)行刪除操作,若section不存在,則不會執(zhí)行任何操作

# 刪除section
config.remove_section('user')
config.remove_section('user_name')
all_sections = config.sections()
print(all_sections)  # ['connect', 'mysql', 'mysql_connect', 'redis']

# ConfigParserObject.remove_option(section, option)
# 若option存在,執(zhí)行刪除操作,若option不存在,則不會執(zhí)行任何操作;
# 若section不存在,則會報錯configparser.NoSectionError: No section: XXX

# 刪除option
config.remove_option('user', 'user_name')
config.remove_option('user', 'user_name')
f = open('config.ini', 'w')
config.write(f)
f.close()

all_sections = config.sections()
print(all_sections)  # ['user', 'connect', 'mysql', 'mysql_connect', 'redis']
print(config.options('user'))  # ['password', 'money']

# 寫入配置文件
# 對configparser對象執(zhí)行的一些修改操作,必須重新寫回到文件才可生效
config.write(open(file_name, 'w'))
向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI