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

Python学习---重点模块之configparse

时间:2018-07-28 21:56:59      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:display   fir   class   otto   splay   不能   img   tabs   打印   

configparse模块常用于生成和修改常见的配置文档

生成配置模块:用字典写

import configparser

config = configparser.ConfigParser()
config["DEFAULT"] = {‘ServerAliveInterval‘: ‘45‘,
                     ‘Compression‘: ‘yes‘,
                     ‘CompressionLevel‘: ‘9‘}

config[‘USER‘] = {}
config[‘USER‘][‘User‘] = ‘hhh‘
config[‘SSH‘] = {}
topsecret = config[‘SSH‘]
topsecret[‘Host Port‘] = ‘50022‘  # mutates the parser
topsecret[‘ForwardX11‘] = ‘no‘  # same here
config[‘DEFAULT‘][‘ForwardX11‘] = ‘yes‘
with open(‘example.ini‘, ‘w‘) as configfile:
    config.write(configfile)

技术分享图片

读取配置:config.sections()

import configparser
config = configparser.ConfigParser()
config.read(‘example.ini‘)                  
print(config.sections())                     # [‘USER‘, ‘SSH‘], 默认不dayin[DEFAULT]模块
print(config[‘USER‘])                        # <Section: USER>
print(config[‘USER‘][‘user‘])                # hg
print(config.defaults())                     # 打印默认模块, 打印出来一个有序的字典
print(config.has_section(‘USER‘))            # True
 OrderedDict
print(config[‘DEFAULT‘][‘compressionlevel‘]) # 9   # 打印默认模块, 打印出来一个有序的字典OrderedDict
# 跟字典一样,只打印key的信息
for key in config[‘DEFAULT‘]:
    # print(key, v)  报错, too many values to unpack (expected 2)
    print(key)

删除整个模块: remove,文件不能修改,只能覆盖,可以重新写入新的文件

import configparser
config = configparser.ConfigParser()
config.read(‘example.ini‘)

# 文件不能修改,只能覆盖,可以重新写入新的文件
config.remove_section(‘SSH‘)
with open(‘example.ini‘, ‘w‘, encoding=‘utf-8‘) as f:
    config.write(f)
print(config.sections())

删除模块下的某个元素

import configparser
config = configparser.ConfigParser()
config.read(‘example.ini‘)

print(config.has_option(‘USER‘, ‘user‘))
config.remove_option(‘USER‘, ‘user‘)
print(config.has_option(‘USER‘, ‘user‘))

with open(‘example.ini‘, ‘w‘, encoding=‘utf-8‘) as f:
    config.write(f)

修改配置:

import configparser
config = configparser.ConfigParser()
config.read(‘example.ini‘)

print(config[‘USER‘][‘user‘])
config.set(‘USER‘, ‘user‘, ‘ftl‘)
print(config[‘USER‘][‘user‘])

with open(‘example.ini‘, ‘w‘, encoding=‘utf-8‘) as f:
    config.write(f)

Python学习---重点模块之configparse

标签:display   fir   class   otto   splay   不能   img   tabs   打印   

原文地址:https://www.cnblogs.com/ftl1012/p/9383326.html

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