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

python 之configparser模块

时间:2018-06-09 11:30:23      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:https   stc   IV   options   src   bubuko   com   zha   min   

该模块的作用 就是使用模块中的RawConfigParser()ConfigParser()、 SafeConfigParser()这三个方法(三者择其一),创建一个对象使用对象的方法对指定的配置文件做增删改查 操作。

1.【创建一个配置文件的方法步骤】

import  configparser

config=configparser.ConfigParser()
#按字典的方式添加
config["DEFAULT"]={ServerAliceIntervale:45,
                    Compression:Yes,
                    ComperssionLevel:9
                   }
config[bitbucket.org]={User:kebi}
config[topsecret.server.com]={Host Port:50022,ForwardXll:no}
# topsecret=config[‘topsecret.server.com‘]
# topsecret[‘Host Port‘]=‘50022‘
# topsecret[‘ForwardXll‘]=‘no‘
config[DEFAULT][ForwardXll]=yes

#写入文件
with open(rexample.ini,w) as configfile:
    config.write(configfile)

【3】读取文件

# 读取文件
config.read(example.ini)
print(config.sections())    #返回可用的section的列表;默认section不包括在列表中
print(config.defaults())#    返回包含实例范围默认值的字典。

print(ddddd,config.options(bitbucket.org))#获取所有的配置表名字key
for key in config[bitbucket.org]:#返回所有的可以,不仅仅是这个建值对下的key
    print(key)

【4】删除,修改

#删除
#config.remove_section(‘topsecret.server.com‘)

#config.set(‘bitbucket.org‘,‘age‘,‘22‘)#要赋值的话,赋值完要重新写入,不然不成功
#修改
#config.set(‘bitbucket.org‘,‘user‘,‘zhanmus‘)

config.remove_option(bitbucket.org,user)#通过键值对删除
#重新写入
config.write(open(example.ini,w))#修改删除都要重新写入,不然不成功

技术分享图片

python 之configparser模块

标签:https   stc   IV   options   src   bubuko   com   zha   min   

原文地址:https://www.cnblogs.com/lanyinhao/p/9158781.html

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