python 从config.ini文件中解析数据库设置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 从config.ini文件中解析数据库设置相关的知识,希望对你有一定的参考价值。

from configparser import ConfigParser
def read_db_config(filename="config.ini", section="mysql"):
  parser = ConfigParser()
  parser.read(filename)
  db = {}
  if parser.has_section(section):
    items = parser.items(section)
    for item in items:
      db[item[0]] = item[1]
  else:
    raise Exception("{0} not found in the {1} file".format(section, filename))
return db

以上是关于python 从config.ini文件中解析数据库设置的主要内容,如果未能解决你的问题,请参考以下文章

用python读取配置文件config.ini

如何从 Perl 访问 INI 文件?

python读取配置文件的方式

Python读取配置文件(config.ini),写入配置文件

Python读取配置文件(config.ini),写入配置文件

Python 自动化测试config配置文件ini 配置目录