前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Python ConfigParser的

Python ConfigParser的

作者头像
py3study
发布2020-01-13 12:45:27
6410
发布2020-01-13 12:45:27
举报
文章被收录于专栏:python3python3

1.基本的读取配置文件

-read(filename) 直接读取ini文件内容

-sections() 得到所有的section,并以列表的形式返回

-options(section) 得到该section的所有option

-items(section) 得到该section的所有键值对

-get(section,option) 得到section中option的值,返回为string类型

-getint(section,option) 得到section中option的值,返回为int类型,还有相应的getboolean()和getfloat() 函数。

2.基本的写入配置文件

-add_section(section) 添加一个新的section

-set( section, option, value) 对section中的option进行设置,需要调用write将内容写入配置文件。

3.Python的ConfigParser Module中定义了3个类对INI文件进行操作。

分别是RawConfigParser、ConfigParser、 SafeConfigParser。

RawCnfigParser是最基础的INI文件读取类;

ConfigParser、 SafeConfigParser支持对%(value)s变量的解析。 

设定配置文件test.conf


[portal] 

url = http://%(host)s:%(port)s/Portal 

host = localhost 

port = 8080 


使用RawConfigParser:


import ConfigParser 

file1 = ConfigParser.RawConfigParser() file1.read('aa.txt')

print(file1.get('portal','url'))

得到终端输出:

http://%(host)s:%(port)s/Portal


使用ConfigParser:


import ConfigParser 

file2 = ConfigParser.ConfigParser() file2.read('aa.txt') print(file2.get('portal','url'))

得到终端输出:

http://localhost:8080/Portal


使用SafeConfigParser:


import ConfigParser 

cf = ConfigParser.SafeConfigParser() 

file3 = ConfigParser.SafeConfigParser() file3.read('aa.txt') print(file3.get('portal','url'))

得到终端输出(效果同ConfigParser):

http://localhost:8080/Portal


本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-08-06 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档