Python语法之ConfigParser 思维导图

阿里 阅读:732 2021-03-31 13:29:59 评论:0

ConfigParser 功能代码:

import io 
import sys 
import configparser 
 
sys.stdout = io.TextIOWrapper(sys.stdout.detach(),encoding='utf-8') 
 
#实例化 ConfigParser 并加载配置文件 
cp = configparser.ConfigParser() 
cp.read('config.conf',encoding="utf-8") 
#获取 section 列表、option 键列表和 option 键值元组列表  
print('all sections:', cp.sections())         # sections: ['db', 'ssh'] 
print('options of [db]:', cp.options('db'))  # options of [db]: ['host', 'port', 'user', 'pass'] 
print('items of [ssh]:', cp.items('ssh'))    # items of [ssh]: [('host', '192.168.10.111'), ('user', 'sean'), ('pass', 'sean')] 
 
#取指定的配置信息 
print('host of db:', cp.get('db', 'host'))     # host of db: 127.0.0.1 
print('host of ssh:', cp.get('ssh', 'host'))   # host of ssh: 192.168.10.111 
#按类型读取配置信息:getint、 getfloat 和 getboolean 
print(type(cp.getint('db', 'port')))        # <type 'int'> 
#判断 option 是否存在 
print(cp.has_option('db', 'host'))    # True 
#设置 option 
cp.set('db', 'host','192.168.10.222') 
#删除 option 
cp.remove_option('db', 'host') 
#判断 section 是否存在 
print(cp.has_section('db'))    # True 
#添加 section 
cp.add_section('new_sect') 
# 删除 section 
cp.remove_section('db') 
#保存配置,set、 remove_option、 add_section 和 remove_section 等操作并不会修改配置文件,write 方法可以将 ConfigParser 对象的配置写到文件中 
cp.write(open('config.conf', 'w')) 
cp.write(sys.stdout) 

 

标签:Python
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

关注我们

一个IT知识分享的公众号