摘要:解析配置模块之详解基本的读取配置文件直接读取文件内容得到所有的,并以列表的形式返回得到该的所有得到该的所有键值对得到中的值,返回为类型得到中的值,返回为类型,还有相应的和函数。是最基础的文件读取类,支持对变量的解析。
Python 解析配置模块之ConfigParser详解 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.基本例子test.conf
[a] a_key1 = 20 a_key2 = 10 [b] b_key1 = 121 b_key2 = b_value2 b_key3 = $r b_key4 = 127.0.0.1
ConfigParser_example.py
cf = ConfigParser.ConfigParser() cf.read("test.conf") # 读取配置文件内容 secs = cf.sections() # 对内容进行划分,得到所有的章节名 print "sections:", secs # 以列表形式打印章节名 opts = cf.options("a") print "options:", opts # 以列表形式打印a章节里面的Key kvs = cf.items("a") print "sec_a:", kvs # 以列表形式打印a章节的(key, value) str_val = cf.get("a", "a_key1") # 返回a章节里面key为a_key1的值,返回为string类型 int_val = cf.getint("a", "a_key2") # 返回_a章节里面key为a_key2的值,返回为int类型 print "value for a"s a_key1:", str_val print "value for a"s a_key2:", int_val cf.set("b", "b_key3", "new-$r") # 章节a里面添加一个key为b_key3,值为new-$r,如果key存在就更新key的值 cf.set("b", "b_newkey", "new-value") # 章节b里面添加一个key为b_newkey,值为new-value,key存在就更新key的值 cf.add_section("a_new_section") # 新建一个章节a_new_section cf.set("a_new_section", "new_key", "new_value") # 章节a_new_section里面新建一个key为new_key,值为new_value cf.write(open("test.conf", "w")) # 把修改写入到文件test.conf中
终端输出:
sections: ["a", "b"] options: ["a_key1", "a_key2"] sec_a: [("a_key1", "20"), ("a_key2", "10")] value for a"s a_key1: 20 value for a"s a_key2: 10
更新后的test.conf
[a] a_key1 = 20 a_key2 = 10 [b] b_key1 = 121 b_key2 = b_value2 b_key3 = new-$r b_key4 = 127.0.0.1 b_newkey = new-value [a_new_section] new_key = new_value4.Python的ConfigParser Module中定义了3个类对INI文件进行操作。
分别是RawConfigParser、ConfigParser、SafeConfigParser。RawCnfigParser是最基础的INI文件读取类,ConfigParser、SafeConfigParser支持对%(value)s变量的解析。
设定配置文件test2.conf
[portal] url = http://%(host)s:%(port)s/Portal host = localhost port = 8080
使用RawConfigParser:
import ConfigParser cf2 = ConfigParser.RawConfigParser() print "use RawConfigParser() read" cf2.read("test2.conf") # 读取配置文件内容 print cf2.get("portal", "url") # 获得章节portal中key为url的值 print "use RawConfigParser() write" cf2.set("portal", "url12", "%(host)s:%(port)s") # 章节portal中添加一个key为url12,值为%(host)s:%(port)s print cf2.get("portal", "url12") # 获得章节portal中key为url12的内容
终端输出:
use RawConfigParser() read http://%(host)s:%(port)s/Portal use RawConfigParser() write %(host)s:%(port)s
改用ConfigParser:
import ConfigParser cf3 = ConfigParser.ConfigParser() print "use ConfigParser() read" cf3.read("test2.conf") print cf3.get("portal", "url") print "use ConfigParser() write" cf3.set("portal", "url12", "%(host)s:%(port)s") print cf3.get("portal", "url12")
终端输出:
use ConfigParser() read http://localhost:8080/Portal use ConfigParser() write localhost:8080
改用SafeConfigParser:
import ConfigParser cf4 = ConfigParser.SafeConfigParser() print "use SafeConfigParser() read" cf4.read("test2.conf") print cf4.get("portal", "url") print "use SateConfigParser() write" cf4.set("portal", "url2", "%(host)s:%(port)s") print cf4.get("portal", "url2")
终端输出(效果同ConfigParser):
use SafeConfigParser() read http://localhost:8080/Portal use SateConfigParser() write localhost:8080
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/41612.html
摘要:由于这种需求非常普遍,配置解析器提供了一系列更简便的方法来处理整数浮点数及布尔值。注意点方法对大小写不敏感,能识别和为对应的布尔值后备值和字典一样,可以使用的方法提供后备值需要注意的是,默认值的优先级高于后备值。 快速开始 # demo.ini [DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel ...
摘要:的三种数据类型字典列表元组,分别用花括号中括号小括号表示。约等于上句,可能是因为自定义变量名与内部函数或变量同名了。下,默认路径一般为。的日志模块中计时器定时器计划任务,。对象的问题怎样忽略警告不打印烦人的警告打印到终端同时记录到文件。 Python Enhancement Proposal。(PEP,Python增强建议书) Python之禅(import this) Pytho...
摘要:可能没有用户输出的消息创建一个,用于写入日志文件再创建一个,用于输出到控制台对象可以添加多个和对象序列化模块什么叫序列化将原本的字典列表等内容转换成一个字符串的过程就叫做序列化。 hashlib模块 1.Python的hashlib提供了常见的摘要算法,如MD5,SHA1等等。什么是摘要算法呢?摘要算法又称哈希算法、散列算法。它通过一个函数,把任意长度的数据转换为一个长度固定的数据串(...
摘要:大家应该接触过格式的配置文件。特别是后续做自动化的测试,需要拎出一部分配置信息,进行管理。二读取文件自带有读取配置文件的模块,配置文件不区分大小写。读取文件内容得到所有的,并以列表的形式返回。 大家应该接触过.ini格式的配置文件。配置文件就是把一些配置相关信息提取出去来进行单独管理,如果以后有变动只需改配置文件,无需修改代码。特别是后续做自动化的测试,需要拎出一部分配置信息,进行管...
关于Python,相比大家都不会陌生吧,那么,其中的一些配置文件是什么呢?有没有可能给大家去进行做一个汇总,汇总的内容还是比较的多的,包含写法等一些相关的知识,具体的一些相关汇总,下面给大家详细解答下。 前言 在这篇文章里所提到的环境变量种类其多元性由上至下到另一个先后提升:ini为何要写环境变量 在研发流程中,很多人都会使用一些固定不动主要参数或者整型变量。对于这类相对固定不动且经常使...
阅读 1655·2021-11-19 09:40
阅读 2913·2021-09-24 10:27
阅读 3204·2021-09-02 15:15
阅读 1859·2019-08-30 15:54
阅读 1187·2019-08-30 15:54
阅读 1354·2019-08-30 13:12
阅读 608·2019-08-28 18:05
阅读 2776·2019-08-27 10:53