# -*- 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. 零基础写python爬虫之使用Scrapy框架编写爬虫

    网络爬虫,是在网上进行数据抓取的程序,使用它能够抓取特定网页的HTML数据.虽然我们利用一些库开发一个爬虫程序,但是使用框架可以大大提高效率,缩短开发时间.Scrapy是一个使用Python编写的,轻 ...

  2. DAU预测

    转自: http://www.kaixin001.com/repaste/80488684_6910412734.html 我们知道在所有的游戏运营数据中,最终要的两个数据莫过于DAU.ARPU了.| ...

  3. 【ContestHunter】【弱省胡策】【Round8】

    平衡树维护凸壳/三角函数+递推+线段树 官方题解:http://pan.baidu.com/s/1sjQbY8H 洛阳城里春光好 题目大意:(其实出题人已经写的很简短了……直接copy的-_-.sor ...

  4. @Autowired用法详解

    @Autowired 注释,它可以对类成员变量.方法及构造函数进行标注,完成自动装配的工作. 通过 @Autowired的使用来消除 set ,get方法.在使用@Autowired之前,我们对一个b ...

  5. 怎么选择软件许可证,Apache, MIT, BSD, GPL, Mozilla, LGPL

  6. C/C++ 指针函数 与 函数指针

    指针函数是个函数,是返回指针类型到函数. 函数指针是个指针,是指向函数地址到指针. 区分两者的关键点是,函数名是否用*和括号“包围”起来. #include <stdio.h> int * ...

  7. go语言之进阶篇主协程先退出

    1.主协程先退出 示例: package main import ( "fmt" "time" ) //主协程退出了,其它子协程也要跟着退出 func main ...

  8. 2014年.net程序员年终总结

    2014年经历了3家公司,感觉这一年工作不怎么顺利,在2013年1月进入一家外企从事软件架构设计.开发测试.部署实施的相关工作,在2013年感觉工作很充实,在2014年由于项目的原因被迫去做项目维护, ...

  9. DOM之通俗易懂讲解

    DOM是所有前端开发每天打交道的东西,但是随着jQuery等库的出现,大大简化了DOM操作,导致大家慢慢的“遗忘”了它的本来面貌.不过,要想深入学习前端知识,对DOM的了解是不可或缺的,所以本文力图系 ...

  10. 糟糕的css用法 1

    现在网站追求越来越漂亮好看,越来越炫,所以css是必不可少的.可是我发现许多人使用css的方式是不对的,至少是不推荐的. 比如下面的css用法不对 (1)一个页面对应一个css文件 这种做法是我深恶痛 ...