python之模块配置文件ConfigParser(在python3中变化较大)
# -*- 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中变化较大)的更多相关文章
- Python 读取写入配置文件 —— ConfigParser
Python 读取写入配置文件 —— ConfigParser Python 读取写入配置文件很方便,可使用内置的 configparser 模块:可查看源码,如博主本机地址: “C:/python2 ...
- python常用模块之configparser模块
python常用模块之configparser 作用:解析配置文件 假设在当前目录下有这样一个conf.ini文件 [DEFAULT] ServerAliveInterval = 45 Compres ...
- python xlrd 模块(获取Excel表中数据)
python xlrd 模块(获取Excel表中数据) 一.安装xlrd模块 到python官网下载http://pypi.python.org/pypi/xlrd模块安装,前提是已经安装了pyt ...
- Python ymal 模块和configparser
ymal : 是一种config文件 # !/user/bin/python # -*- coding: utf-8 -*- import configparser # 生成一个config文件 (当 ...
- Python 读取写入配置文件 ConfigParser
https://blog.csdn.net/piaodexin/article/details/77371343 https://www.cnblogs.com/feeland/p/4502931.h ...
- python 常用模块之ConfigParser
在程序中使用配置文件来灵活的配置一些参数是一件很常见的事情,配置文件的解析并不复杂,在Python里更是如此,在官方发布的库中就包含有做这件事情的库,那就是ConfigParser, Python C ...
- [tensorflow]图像处理相关模块的安装(python3中PIL)
直接上过程图(平台为Anaconda): 默认已经配置完了tensorflow的3.5的环境 我这里已经安装完成 接下来,就可以在python文件中引入模块了 from PIL import Imag ...
- python之模块(在命令行当中使用pip install 模块来进行模块的安装)
模块:在程序设计中,为完成某一功能所需的一段程序或子程序:或指能由编译程序.装配程序等处理的独立程序单位. 在我们编程的时候我们如果将所有的文件都放在那个py文件中,我们的py文件会很大,这样也很不好 ...
- Python常用模块之configparser
ConfigParser简介 ConfigParser 是用来读取配置文件的包.配置文件的格式如下:中括号“[ ]”内包含的为section.section 下面为类似于key-value 的配置内容 ...
随机推荐
- 解读SSD中的Default box(Prior Box)
1:SSD更具体的框架如下: 2: Prior Box 缩进在SSD中引入了Prior Box,实际上与anchor非常类似,就是一些目标的预选框,后续通过softmax分类+bounding box ...
- python抽象类的实现方式:abc模块
abc:abstract base class 文档:https://docs.python.org/zh-cn/3.7/library/abc.html 参考:https://www.cnblogs ...
- java 小程序查看器 启动:未初始化小程序 解决方法
欢迎大家转载.为保留作者成果,转载请注明出处,http://blog.csdn.net/netluoriver,有些文件在资源中也能够下载.假设你没有积分.能够联系我索要! 在执行java程序的时候突 ...
- JEECG 命名规范
举例讲解代码规范 例如:表名 :jeecg_sys_demo 第一部分:代码文件命名规则如下: 首先:表名采用驼峰写法转换为Java代码使用单词 jeecg_sys_demo => Jeecg ...
- 开启Remote Desktop的PowerShell
1) Enable Remote Desktop set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Ser ...
- Pascal's Triangle leetcode java(杨辉三角)
题目: Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5, ...
- Redis学习手册(主从复制)(转)
一.Redis的Replication: 这里首先需要说明的是,在Redis中配置Master-Slave模式真是太简单了.相信在阅读完这篇Blog之后你也可以轻松做到.这里我们还是先列出一些理论性的 ...
- Java Math.sqrt()方法
描述 java.lang.Math.sqrt(double a) 返回正确舍入的一个double值的正平方根.特殊情况: 如果参数是NaN或小于为零,那么结果是NaN. 如果参数是正无穷大,那么结果为 ...
- 神经网络激活函数sigmoid relu tanh 为什么sigmoid 容易梯度消失
https://blog.csdn.net/danyhgc/article/details/73850546 什么是激活函数 为什么要用 都有什么 sigmoid ,ReLU, softmax 的比较 ...
- sql-获取指定年份指定月份的天数
declare @年月 varchar(6) set @年月= '201803' --查询2015年2月有多少天 select day(dateadd(month,1,@年月+ '01 ')-1)