天天看點

Python configparser的使用 讀取幸運28平台搭建配置檔案

配置檔案

配置檔案[]中為section命名,幸運28平台搭建q<277.03.4.83.6>section的命名可以包含空格,每個section下面以鍵值對的方式儲存配置内容,在讀取配置時鍵值對全部解析為字元串,是以在配置時無需為字元串添加引号

settings.conf檔案定義

[mysql settings]

host = 10.250.218.51

port = 3306

username = admin

password = admin123

coding = utf8

[oracle settings]

host = 10.250.218.52

port = 1521

username = SYSDBA

讀取配置檔案main.py

from configparser import ConfigParser

conf = ConfigParser()

conf.read("settings.conf")

檢視所有section(傳回一個清單)。

conf.sections

['database settings', 'mysql settings', 'oracle settings']

檢視section中的所有Key(傳回一個清單)

conf.options["mysql settings"]

['host', 'port', 'username', 'password', 'coding']

檢視指定section中的option(傳回一個字元串)

conf.get("mysql settings", "port")