溫馨提示×

python怎么讀取ini配置文件

小億
88
2024-01-30 16:05:50
欄目: 編程語言

在Python中,可以使用configparser模塊來讀取和解析ini配置文件。

首先,需要導(dǎo)入configparser模塊:

import configparser

接下來,創(chuàng)建一個configparser對象,并使用read()方法讀取ini配置文件:

config = configparser.ConfigParser()
config.read('config.ini')

然后,可以使用get()方法來獲取配置文件中的值。假設(shè)ini配置文件中有一個名為database的節(jié),其中有一個名為host的選項,可以使用以下代碼獲取該選項的值:

host = config.get('database', 'host')

如果需要獲取整數(shù)或布爾值,可以使用getint()getboolean()方法:

port = config.getint('database', 'port')
ssl_enabled = config.getboolean('database', 'ssl_enabled')

除了get()、getint()getboolean()方法,configparser模塊還提供了其他一些方法用于操作配置文件,比如sections()方法用于獲取所有節(jié)的名稱,options()方法用于獲取指定節(jié)中的所有選項等。

完整的示例代碼如下:

import configparser

config = configparser.ConfigParser()
config.read('config.ini')

host = config.get('database', 'host')
port = config.getint('database', 'port')
ssl_enabled = config.getboolean('database', 'ssl_enabled')

print(host, port, ssl_enabled)

注意:在讀取ini配置文件時,需要確保配置文件存在且格式正確,否則可能會引發(fā)異常。

0