Python configparser模块常用方法解析

作者:疯了的小蜗 时间:2021-07-08 17:31:11 

ConfigParser模块在python中用来读取配置文件,配置文件的格式跟windows下的ini配置文件相似,可以包含一个或多个节(section), 每个节可以有多个参数(键=值)。使用的配置文件的好处就是不用在程序员写死,可以使程序更灵活。

注意:在python 3 中ConfigParser模块名已更名为configparser

configparser函数常用方法:

读取配置文件:

read(filename) #读取配置文件,直接读取ini文件内容

sections() #获取ini文件内所有的section,以列表形式返回['logging', 'mysql']

options(sections) #获取指定sections下所有options ,以列表形式返回['host', 'port', 'user', 'password']

items(sections) #获取指定section下所有的键值对,[('host', '127.0.0.1'), ('port', '3306'), ('user', 'root'), ('password', '123456')]

get(section, option) #获取section中option的值,返回为string类型
>>>>>获取指定的section下的option <class 'str'> 127.0.0.1

getint(section,option) 返回int类型
getfloat(section, option) 返回float类型
getboolean(section,option) 返回boolen类型

举例如下:

配置文件ini如下:

[logging]
level = 20
path =
server =

[mysql]
host=127.0.0.1
port=3306
user=root
password=123456

注意,也可以使用:替换=

代码如下:


import configparser
from until.file_system import get_init_path

conf = configparser.ConfigParser()
file_path = get_init_path()
print('file_path :',file_path)
conf.read(file_path)

sections = conf.sections()
print('获取配置文件所有的section', sections)

options = conf.options('mysql')
print('获取指定section下所有option', options)

items = conf.items('mysql')
print('获取指定section下所有的键值对', items)

value = conf.get('mysql', 'host')
print('获取指定的section下的option', type(value), value)

运行结果如下:

file_path : /Users/xxx/Desktop/xxx/xxx/xxx.ini
获取配置文件所有的section ['logging', 'mysql']
获取指定section下所有option ['host', 'port', 'user', 'password']
获取指定section下所有的键值对 [('host', '127.0.0.1'), ('port', '3306'), ('user', 'root'), ('password', '123456')]
获取指定的section下的option <class 'str'> 127.0.0.1

综合使用方法:


import configparser
"""
读取配置文件信息
"""

class ConfigParser():

config_dic = {}
 @classmethod
 def get_config(cls, sector, item):
   value = None
   try:
     value = cls.config_dic[sector][item]
   except KeyError:
     cf = configparser.ConfigParser()
     cf.read('settings.ini', encoding='utf8') #注意setting.ini配置文件的路径
     value = cf.get(sector, item)
     cls.config_dic = value
   finally:
     return value

if __name__ == '__main__':
 con = ConfigParser()
 res = con.get_config('logging', 'level')
 print(res)

来源:https://www.cnblogs.com/insane-Mr-Li/p/9952827.html

标签:Python,configparser,模块
0
投稿

猜你喜欢

  • 在Windows系统上安装Cygwin搭建Swoole测试环境的图文教程

    2022-11-13 21:19:34
  • Python实现的随机森林算法与简单总结

    2021-07-10 20:59:54
  • Python详解argparse参数模块之命令行参数

    2021-06-20 21:16:18
  • keras自动编码器实现系列之卷积自动编码器操作

    2023-12-31 18:33:15
  • asp如何随机显示网站链接?

    2010-06-07 20:40:00
  • 使用Python获取爱奇艺电视剧弹幕数据的示例代码

    2022-08-09 08:38:29
  • Python Pandas的concat合并

    2023-06-08 05:05:38
  • 浅谈Django中的数据库模型类-models.py(一对一的关系)

    2024-01-24 18:32:11
  • pytorch 多个反向传播操作

    2021-03-05 02:21:49
  • 解决Python2.7中IDLE启动没有反应的问题

    2022-10-17 17:43:57
  • 百度百科的图片轮播代码

    2009-05-06 12:58:00
  • pyqt5实现按钮添加背景图片以及背景图片的切换方法

    2023-01-11 05:15:32
  • 在python中利用numpy求解多项式以及多项式拟合的方法

    2021-05-14 03:01:24
  • python中dict()的高级用法实现

    2022-06-16 23:24:29
  • 关于TensorFlow新旧版本函数接口变化详解

    2022-12-29 19:00:21
  • 详解python的异常捕获

    2023-05-27 11:24:03
  • ASP中Session技巧 默认过期时间为20分钟

    2012-12-04 20:28:26
  • python 求两个向量的顺时针夹角操作

    2021-05-26 13:31:10
  • PHP的mysqli_set_charset()函数讲解

    2023-07-11 06:22:17
  • MySQL下载安装配置详细教程 附下载资源

    2024-01-29 10:15:41
  • asp之家 网络编程 m.aspxhome.com