码迷,mamicode.com
首页 > 编程语言 > 详细

Python之配置文件读写

时间:2017-12-11 14:15:57      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:als   type   log   value   use   key   parser   item   user   

ConfigParser模块
一、创建配置文件
在D盘建立一个配置文件,名字为:test.ini
内容如下:
[baseconf]
host=127.0.0.1
port=3306
user=root
password=root
db_name=gloryroad
[test]
ip=127.0.0.1
int=1
float=1.5
bool=True
注意:要将文件保存为ansi编码,utf-8编码会报错
文件中的[baseconf]为section
 
二、读配置文件
import ConfigParser
cf=ConfigParser.ConfigParser()
cf.read(path) 读配置文件(ini、conf)返回结果是列表
cf.sections() 获取读到的所有sections(域),返回列表类型
cf.options(‘sectionname‘) 某个域下的所有key,返回列表类型
cf.items(‘sectionname‘) 某个域下的所有key,value对
value=cf.get(‘sectionname‘,‘key‘) 获取某个yu下的key对应的value值
cf.type(value) 获取的value值的类型
 
(1)getint(section, option)
获取section中option的值,返回int类型数据,所以该函数只能读取int类型的值。
(2)getboolean(section, option)
获取section中option的值,返回布尔类型数据,所以该函数只能读取boolean类型的值。
(3)getfloat(section, option)
获取section中option的值,返回浮点类型数据,所以该函数只能读取浮点类型的值。
(4)has_option(section, option)
检测指定section下是否存在指定的option,如果存在返回True,否则返回False。
(5)has_section(section)
检测配置文件中是否存在指定的section,如果存在返回True,否则返回False。
 
三、动态写配置文件
cf.add_section(‘test‘) 添加一个域
cf.set(‘test3‘,‘key12‘,‘value12‘) 域下添加一个key value对
cf.write(open(path,‘w‘)) 要使用‘w‘

Python之配置文件读写

标签:als   type   log   value   use   key   parser   item   user   

原文地址:http://www.cnblogs.com/emily-qin/p/8022292.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!