configparser 配置文件模块

Posted zhaobowen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了configparser 配置文件模块相关的知识,希望对你有一定的参考价值。

#!-*-coding:utf-8-*-
 
from configparser import ConfigParser

cfg = ConfigParser()
cfg.read(‘config.ini‘)
# 获取指定section 的option值
#第一参数是section 第二个参数是option
name = cfg.get("HOST", "mysql")
print(name)

以上是关于configparser 配置文件模块的主要内容,如果未能解决你的问题,请参考以下文章

Python中ConfigParser模块详谈

Python中配置文件解析模块-ConfigParser

configparser 配置文件模块

pythopn configparser 模块(配置)

python解析配置文件---configparser模块

python读取配置文件 变量 ConfigParser模块