# -*- coding: utf-8 -*-
#python 27
#xiaodeng
#python之模块ConfigParser(在python3中为configparser)
#特别注意:python3和python2关于该模块的功能用法有很大的不同. #配置文件解析器
import ConfigParser,os #初始化一个配置文件对象
config=ConfigParser.ConfigParser() #增加一个section
config.add_section('Section01')
config.add_section('Section02') #给section增加属性键值对
config.set('Section01','name','xiaodeng')#set(section, option, value)
config.set('Section01','age','')
config.set('Section01','bar','python')
config.set('Section01', 'an_int', '')
config.set('Section01', 'a_bool', 'true')
config.set('Section01', 'a_float', '3.1415')
config.set('Section01', 'baz', 'fun')
config.set('Section01', 'bar', 'fengMei')
config.set('Section01', 'foo', '%(bar)s is %(baz)s!')
config.set('Section01','age','')
config.set('Section02', 'bar', 'Python')
config.set('Section02','bar','python') #写入文件
with open('test.cfg','wb') as configFile:
config.write(configFile) #读取cfg文件
config=ConfigParser.ConfigParser()
config.read('test.cfg')#ConfigParser.ConfigParser instance #取值
print config.getfloat('Section01','a_float')#getfloat(section, options)
print config.getint('Section01','an_int')#getint(section, options)
print config.getboolean('Section01','a_bool')#getboolean(section, options) #返回一个list形式的元组;items(section, raw=False, vars=None)
print config.items('Section01')
#[('name', 'xiaodeng'), ('age', '25'), ('bar', 'fengMei'), ('an_int', '15'), ('a_bool', 'true'), ('a_float', '3.1415'), ('baz', 'fun'), ('foo', 'fengMei is fun!')] #取所有的section名字
print config.sections()#['Section01', 'Section02'] #获取所有的配置表名字key
print config.options('Section01')#['name', 'age', 'bar', 'an_int', 'a_bool', 'a_float', 'baz', 'foo'] #删除指定Section选项下内容
config.remove_section('Section02')#测试时查看文件中还是存在Section02,但是用指令查看sections的名字时只有Section01 #get(section, option, raw=False, vars=None)
#在指定的section选项中查找特定option的value值
#注意:这里默认查找的是最后一个相同option的值
print config.get('Section01','bar')
print config.get('Section01','age')
print config.get('Section01','bar') '''
ConfigParser -- responsible for parsing a list of
configuration files, and managing the parsed database. methods: __init__(defaults=None)
create the parser and specify a dictionary of intrinsic defaults. The
keys must be strings, the values must be appropriate for %()s string
interpolation. Note that `__name__' is always an intrinsic default;
its value is the section's name. sections()
#取所有的section名字
return all the configuration section names, sans DEFAULT has_section(section)
return whether the given section exists has_option(section, option)
return whether the given option exists in the given section options(section)
#获取所有的配置表名字key
return list of configuration options for the named section read(filenames)
read and parse the list of named configuration files, given by
name. A single filename is also allowed. Non-existing files
are ignored. Return list of successfully read files. readfp(fp, filename=None)
read and parse one configuration file, given as a file object.
The filename defaults to fp.name; it is only used in error
messages (if fp has no `name' attribute, the string `<???>' is used). get(section, option, raw=False, vars=None)
return a string value for the named option. All % interpolations are
expanded in the return values, based on the defaults passed into the
constructor and the DEFAULT section. Additional substitutions may be
provided using the `vars' argument, which must be a dictionary whose
contents override any pre-existing defaults. getint(section, options)
like get(), but convert value to an integer getfloat(section, options)
like get(), but convert value to a float getboolean(section, options)
like get(), but convert value to a boolean (currently case
insensitively defined as 0, false, no, off for False, and 1, true,
yes, on for True). Returns False or True. items(section, raw=False, vars=None)
return a list of tuples with (name, value) for each option
in the section. remove_section(section)
remove the given file section and all its options remove_option(section, option)
remove the given option from the given section set(section, option, value)
set the given option write(fp)
write the configuration state in .ini format add_section(self, section)
method of ConfigParser.ConfigParser instance Create a new section in the configuration.
'''

python之模块配置文件ConfigParser(在python3中变化较大)的更多相关文章

  1. Python 读取写入配置文件 —— ConfigParser

    Python 读取写入配置文件 —— ConfigParser Python 读取写入配置文件很方便,可使用内置的 configparser 模块:可查看源码,如博主本机地址: “C:/python2 ...

  2. python常用模块之configparser模块

    python常用模块之configparser 作用:解析配置文件 假设在当前目录下有这样一个conf.ini文件 [DEFAULT] ServerAliveInterval = 45 Compres ...

  3. python xlrd 模块(获取Excel表中数据)

    python xlrd 模块(获取Excel表中数据) 一.安装xlrd模块   到python官网下载http://pypi.python.org/pypi/xlrd模块安装,前提是已经安装了pyt ...

  4. Python ymal 模块和configparser

    ymal : 是一种config文件 # !/user/bin/python # -*- coding: utf-8 -*- import configparser # 生成一个config文件 (当 ...

  5. Python 读取写入配置文件 ConfigParser

    https://blog.csdn.net/piaodexin/article/details/77371343 https://www.cnblogs.com/feeland/p/4502931.h ...

  6. python 常用模块之ConfigParser

    在程序中使用配置文件来灵活的配置一些参数是一件很常见的事情,配置文件的解析并不复杂,在Python里更是如此,在官方发布的库中就包含有做这件事情的库,那就是ConfigParser, Python C ...

  7. [tensorflow]图像处理相关模块的安装(python3中PIL)

    直接上过程图(平台为Anaconda): 默认已经配置完了tensorflow的3.5的环境 我这里已经安装完成 接下来,就可以在python文件中引入模块了 from PIL import Imag ...

  8. python之模块(在命令行当中使用pip install 模块来进行模块的安装)

    模块:在程序设计中,为完成某一功能所需的一段程序或子程序:或指能由编译程序.装配程序等处理的独立程序单位. 在我们编程的时候我们如果将所有的文件都放在那个py文件中,我们的py文件会很大,这样也很不好 ...

  9. Python常用模块之configparser

    ConfigParser简介 ConfigParser 是用来读取配置文件的包.配置文件的格式如下:中括号“[ ]”内包含的为section.section 下面为类似于key-value 的配置内容 ...

随机推荐

  1. SVG.js 颜色渐变使用

    一.SVG.Gradient 1.线性渐变.径向渐变,设置渐变的起始点,设置径向渐变的外层半径 var draw = SVG('svg1').size(300, 300); //SVG.Gradien ...

  2. C#和java之间的一些差异与共性

    C#与java之间的一些共性和差异整理 隐藏:与java中的重写几乎一致,但是需要添加new关键字让编译器知道,否则会有警告 虚方法:1.声明为virtual的方法就是虚方法,在子类中使用overri ...

  3. 关于XSHM(Cross-Site History Manipulation)

    http://blog.chinaunix.net/uid-27070210-id-3255407.html 乍一看,好像和以前 css history hack 差不多,其实原理还是不一样的.浏览器 ...

  4. 什么是 Event Loop?

    http://www.ruanyifeng.com/blog/2013/10/event_loop.html 什么是 Event Loop? 作者: 阮一峰 日期: 2013年10月21日 [2014 ...

  5. you have mixed tabs and spaces fix this

    http://blog.csdn.net/tonyyan19781/article/details/60882443 Vs2013 IDE下,编辑C++的工程源码,在打开文件的时候,会出现 " ...

  6. 同步一个 fork

    fork 了别人的仓库后,原作者又更新了仓库,如何将自己的代码和原仓库保持一致?本文将给你解答. 如何使用搜索引擎 其实这个问题并不难,我又被坑了.百度搜的东西不靠谱啊,以后这种问题一定要用英文在 G ...

  7. mybatis中sql标签、where标签、foreach标签用法

    <sql id="query_user_where"> <!-- 如果 userQueryVo中传入查询条件,再进行sql拼接--> <!-- tes ...

  8. Neo4j资料 Neo4j教程 Neo4j视频教程 Neo4j 图数据库视频教程

    课程发布地址 地址: 腾讯课堂<Neo4j 图数据库视频教程> https://ke.qq.com/course/327374?tuin=442d3e14 作者 庞国明,<Neo4j ...

  9. iOS中的多线程 NSOperation

    在ios中,使用多线程有三种方式,分别是:NSThread.NSOperation和NSOperationQueue.GCD,在本节,主要讲解一下NSOperation的使用. NSOperation ...

  10. linux 安装elasticsearch 可能遇到的问题

    1.can not run elasticsearch as root 切换到非root用户 因为安全问题elasticsearch 不让用root用户直接运行,所以要创建新用户 第一步:liunx创 ...