配置文件操作模块,configparser

Posted 小秒

tags:

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

configparser

configparser用于处理特定格式的文件,其本质上是利用open来操作文件。

# 注释1
;  注释2
 
[section1] # 节点
k1 = v1    # 值
k2:v2       # 值
 
[section2] # 节点
k1 = v1    # 值
指定格式

1、获取所有节点

1
2
3
4
5
6
import configparser
 
config = configparser.ConfigParser()
config.read(\'xxxooo\', encoding=\'utf-8\')
ret = config.sections()
print(ret)

2、获取指定节点下所有的键值对

1
2
3
4
5
6
import configparser
 
config = configparser.ConfigParser()
config.read(\'xxxooo\', encoding=\'utf-8\')
ret = config.items(\'section1\')
print(ret)

3、获取指定节点下所有的建

1
2
3
4
5
6
import configparser
 
config = configparser.ConfigParser()
config.read(\'xxxooo\', encoding=\'utf-8\')
ret = config.options(\'section1\')
print(ret)

4、获取指定节点下指定key的值

1
2
3
4
5
6
7
8
9
10
11
12
import configparser
 
config = configparser.ConfigParser()
config.read(\'xxxooo\', encoding=\'utf-8\')
 
 
v = config.get(\'section1\', \'k1\')
# v = config.getint(\'section1\', \'k1\')
# v = config.getfloat(\'section1\', \'k1\')
# v = config.getboolean(\'section1\', \'k1\')
 
print(v)

5、检查、删除、添加节点

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import configparser
 
config = configparser.ConfigParser()
config.read(\'xxxooo\', encoding=\'utf-8\')
 
 
# 检查
has_sec = config.has_section(\'section1\')
print(has_sec)
 
# 添加节点
config.add_section("SEC_1")
config.write(open(\'xxxooo\', \'w\'))
 
# 删除节点
config.remove_section("SEC_1")
config.write(open(\'xxxooo\', \'w\'))

6、检查、删除、设置指定组内的键值对

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import configparser
 
config = configparser.ConfigParser()
config.read(\'xxxooo\', encoding=\'utf-8\')
 
# 检查
has_opt = config.has_option(\'section1\', \'k1\')
print(has_opt)
 
# 删除
config.remove_option(\'section1\', \'k1\')
config.write(open(\'xxxooo\', \'w\'))
 
# 设置
config.set(\'section1\', \'k10\', "123")
config.write(open(\'xxxooo\', \'w\'))

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

四 Django框架,models.py模块,数据库操作——创建表数据类型索引admin后台,补充Django目录说明以及全局配置文件配置

Android 逆向Android 逆向通用工具开发 ( 网络模块开发 | 配置头文件 | 配置编译参数 | 网络初始化 WSAStartup 与清理 WSACleanup 操作 )

接口测试系列:工作中所用(十:配置文件的读写操作 configparser模块)

configparser配置文件操作

python ini文件处理

17.3.12---logging日志模块level配置操作