【Python模块】configparser模块
程序员文章站
2022-07-10 20:21:56
...
configparser模块:
是python标准库用来解析配置文件的模块。
格式:
section:使用[]标记section名
:或= :使用:或=赋值
[websv]
ip:'192.168.1.10'
port:443
name = 'root'
pw = 'root1990'
定义:
websv叫section
同一个项可以多个值:
ip:'192.168.1.11','192.168.1.12','192.168.1.13' #待测试
read配置文件时,会自动把参数名变成小写
一个section下有多个相同的参数,只能读取最后一个
方法、属性名 | 参数 | 作用 | 示例 |
ConfigParser() |
无 |
创建configpaser实例 |
|
read(filename) |
filename: ini格式的文件名 |
打开ini格式的文件 |
|
sections() |
无 |
以list形式返回所有section |
|
items(section name) |
section name: 指定section名字 |
把指定section的所有参数和值的元组,以list形式返回 |
|
options(section name) |
section name: 指定section名字 |
以list形式,返回section里所有参数名 | |
get[section name][args name] |
section name:指定section名字 argsname:指定参数名 |
返回section的单个参数值。 | |
getint()\getboolean()\getfloat() | |||
add_section(section_name) | section_name:指定section名字 | 添加一个新的section | |
set(section_name,args_name,value) |
section_name:指定section名字 args_name:指定参数名 value:设定参数的值 |
设定具体的参数值。 | |
remove_section(section_name) | section_name:指定section名字 | 删除指定的section | |
remove_option(section_name,args_name) |
section_name:指定section名字 args_name:指定参数名 |
删除section中的args项 | |
clear() | 清空除DEAFULT外所有section | ||
write(open(file_name,'w')) | open(file_name,'w')):以写模式打开一个文件 | 把以上的编辑完成的信息存到file_name | |
has_section(section name) | section name:指定section |
寻找配置文件中指定的section 找到返回True,找不到返回False |
|
进阶操作: | |||
单个参数值是多行 | 除首行外,其它行加一个空格 |
args = “行1 行2” |
结果: 行1 行2 |
参数值带变量 | url = http://%(host)s:%(port)s/Portal |
[web] host = '192.168.0.1' port = 8000 url = http://%(host)s:%(port)s/Portal |
结果: |
'section name' in configparser实例 |
判断实例中是否有section 返回True或False DEAFUALT只能用此方式判断 |
‘DEAFULT’只能用此方法判断 |
|
####例一:
import configparser
config = configparser.ConfigParser()
config.read('example.ini')
#section_name = ['webserver']
#args_name = ['ip', 'port', 'url']
config.add_section('webserver')
config.set('webserver','ip','192.168.0.1')
config.set('webserver','port',8000)
config.set('webserver','url','http//:%(ip)s:%(port)s')
config.write(open('example.ini','w'))
print(config.sections())
print(config.options())
print(config.items())
print(config.get['webserver']['url'])
转载于:https://blog.51cto.com/yishi/2135533
上一篇: 003 thinkphp6电商网站项目实战 -静态资源配置 首页配置
下一篇: Kong静态资源配置
推荐阅读
-
Python进阶(一)——安装Python、程序执行、Python模块和IDLE调试
-
python模块介绍- binascii:二进制和ASCII互转 以及其他进制转换
-
安装完torch geometric,import torch_geometric然后报错:OSError: [WinError 127] 找不到指定的模块
-
Python3中类、模块、错误与异常、文件的简易教程
-
Python实现的在特定目录下导入模块功能分析
-
python中urlparse模块介绍与使用示例
-
为iptables增加connlimit模块 限制DOS攻击
-
Nginx服务器中用于生成缩略图的模块配置教程
-
ThinkPHP采用模块和操作分析
-
Nginx服务器基本的模块配置和使用全攻略