时间:2021-05-22
1、生成配置文件
''' 生成配置文件'''import configparserconfig = configparser.ConfigParser()# 初始化赋值config["DEFAULT"] = {'ServerAliveInterval': '45', 'Compression': 'yes', 'CompressionLevel': '9'}# 追加config['DEFAULT']['ForwardX11'] = 'yes'config['bitbucket.org'] = {}config['bitbucket.org']['User'] = 'hg'config['topsecret.server.com'] = {}topsecret = config['topsecret.server.com']topsecret['Host Port'] = '50022' # mutates the parsertopsecret['ForwardX11'] = 'no' # same herewith open('example.ini', 'w') as configfile: config.write(configfile)2、读取配置文件
# 读import configparserconfig = configparser.ConfigParser()config.sections()config.read('example.ini')# {'serveraliveinterval': '45', 'compression': 'yes', 'compressionlevel': '9', 'forwardx11': 'yes'}print(config.defaults())# hgprint(config['bitbucket.org']["User"])# 50022print(config["topsecret.server.com"]["host port"])3、删除
# 删除(创建一个新文件,并删除 bitbucket.org)import configparserconfig = configparser.ConfigParser()config.sections()config.read('example.ini')rec = config.remove_section("bitbucket.org") # 删除该项config.write(open("example.cfg","w"))生成新文件 example.cfg
DEFAULT]serveraliveinterval = 45compression = yescompressionlevel = 9forwardx11 = yestopsecret.server.com]host port = 50022forwardx11 = no删除,并覆盖原文件
# 删除(删除 bitbucket.org)import configparserconfig = configparser.ConfigParser()config.sections()config.read('example.ini')rec = config.remove_section("bitbucket.org") # 删除该项config.write(open("example.ini","w"))4、修改
import configparserconfig = configparser.ConfigParser()config.read('example.ini') #读文件config.add_section('yuan') #添加sectionconfig.remove_section('bitbucket.org') #删除sectionconfig.remove_option('topsecret.server.com',"forwardx11") #删除一个配置项config.set('topsecret.server.com','k1','11111')config.set('yuan','k2','22222')with open('new2.ini','w') as f: config.write(f)生成新文件 new2.ini
[DEFAULT]serveraliveinterval = 45compression = yescompressionlevel = 9forwardx11 = yes[topsecret.server.com]host port = 50022k1 = 11111[yuan]k2 = 22222以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Python内置模块ConfigParser实现配置读写功能的方法。分享给大家供大家参考,具体如下:用于对特定的配置进行操作,当前模块的名称在py
本文实例讲述了Python使用ConfigParser模块操作配置文件的方法。分享给大家供大家参考,具体如下:一、简介用于生成和修改常见配置文档,当前模块的名称
一、configparser模块是什么可以用来操作后缀为.ini的配置文件;python标准库(就是python自带的意思,无需安装)二、configparse
ConfigParser模块在Python3修改为configparser,这个模块定义了一个ConfigeParser类,该类的作用是让配置文件生效。配置文件
python配置文件有.conf,.ini,.txt等多种python集成的标准库的ConfigParser模块提供一套API来读取和操作配置文件我的配置文件如