时间:2021-05-22
ConfigParser模块在Python3修改为configparser,这个模块定义了一个ConfigeParser类,该类的作用是让配置文件生效。配置文件的格式和window的ini文件相同
编辑配置文件: .ini
模板:内容自定义
一、 编辑配置文件
import configparserconfig = configparser.ConfigParser()config['DEFAULT'] = { 'ServerAliveInterval':'45', 'Compression':'yes', 'CompressionLevel':'9', 'ForwardX11':'yes'}config['bitbucker.org'] = { 'Host Port':'50022', 'ForwardX11':'no'}config['path'] = { 'Base_Path':'D:\python\pychrom\路飞学城\day8', 'student_path':'D:\python\pychrom\路飞学城\day8\configparser模块.py'}with open('example.ini','w',encoding='utf-8') as configfile: config.write(configfile)二、读取配置文件
import configparserconfig = configparser.ConfigParser()config.read('example.ini',encoding='utf-8')print(config.sections()) # 查看分组情况,默认default是不显示的print('bitbucker.org' in config) # Flase 判断一个组在不在这个文件当中print('bitbucker.com' in config) # Trueprint(config['bitbucker.org']['host_port']) # 查钊这个文件中这个分组下面有没有这个配置print(config['bitbucker.org']['user']) # 没有就报错for key in config['bitbucker.org']: # 取默认分组和这个组的下面所有配置 print(key) # 只能取到 keyprint(config.options('bitbucker.org')) # 取分组下面的配置,包括默认分组 只能取到值print(config.items('bitbucker.org')) # 取到分组下面的键值对,包括默认分组print(config.get('path','base_path')) # 获取某个分组下面的键来获取值三、增删改查
import configparserconfig = configparser.ConfigParser()config.read('example.ini',encoding='utf-8')config.add_section('zuming') # 添加组config.remove_section('zuming') # 删除一个组config.remove_option('bitbucker.org','host_port') # 删除某个组中的某一项config.set('bitbucker.org','host_port','22') # 修改某个组下面的值config.write(open('example.ini','w',encoding='utf-8')) # 必须添加这句话才能生效以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
python配置文件有.conf,.ini,.txt等多种python集成的标准库的ConfigParser模块提供一套API来读取和操作配置文件我的配置文件如
1.configparser模块简介使用配置文件来灵活的配置一些参数是一件很常见的事情,配置文件的解析并不复杂,在python里更是如此,在官方发布的库中就包含
ConfigParser模块在python中用来读取配置文件,配置文件的格式跟windows下的ini配置文件相似,可以包含一个或多个节(section),每个
一、configparser模块是什么可以用来操作后缀为.ini的配置文件;python标准库(就是python自带的意思,无需安装)二、configparse
1、生成配置文件'''生成配置文件'''importconfigparserconfig=configparser.ConfigParser()#初始化赋值co