博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python模块之configparser
阅读量:6680 次
发布时间:2019-06-25

本文共 1898 字,大约阅读时间需要 6 分钟。

https://docs.python.org/3/library/configparser.html

configparser用于处理特定格式的文件,其本质上是利用open来操作文件。

1、获取所有节点

import configparser config = configparser.ConfigParser()config.read('xxxooo', encoding='utf-8')ret = config.sections()print(ret)

2、获取指定节点下所有的键值对

import configparser config = configparser.ConfigParser()config.read('xxxooo', encoding='utf-8')ret = config.items('section1')print(ret)

 

3、获取指定节点下所有的建

import configparser config = configparser.ConfigParser()config.read('xxxooo', encoding='utf-8')ret = config.options('section1')print(ret)

 

4、获取指定节点下指定key的值

import configparser config = configparser.ConfigParser()config.read('xxxooo', encoding='utf-8')  v = config.get('section1', 'k1')# v = config.getint('section1', 'k1')# v = config.getfloat('section1', 'k1')# v = config.getboolean('section1', 'k1') print(v)

 

5、检查、删除、添加节点

import configparser config = configparser.ConfigParser()config.read('xxxooo', encoding='utf-8')  # 检查has_sec = config.has_section('section1')print(has_sec) # 添加节点config.add_section("SEC_1")config.write(open('xxxooo', 'w')) # 删除节点config.remove_section("SEC_1")config.write(open('xxxooo', 'w'))

 

6、检查、删除、设置指定组内的键值对

import configparser config = configparser.ConfigParser()config.read('xxxooo', encoding='utf-8') # 检查has_opt = config.has_option('section1', 'k1')print(has_opt) # 删除config.remove_option('section1', 'k1')config.write(open('xxxooo', 'w')) # 设置config.set('section1', 'k10', "123")config.write(open('xxxooo', 'w'))

 

import sys,osimport configparserconfig = configparser.ConfigParser()config.read("xxxooo",encoding='utf-8')sections = config.sections()print(sections)#baseconf = print(config.items("baseconf"))a = config.options("baseconf")print(a)v = config.get('baseconf','port')print(v)hs_sec = config.has_section('baseconf')print(hs_sec)#config.add_section("SEC_2")#config.write(open('xxxooo', 'w'))config.set('SEC_2', 'k10', "123")config.write(open('xxxooo', 'w'))

  

转载地址:http://aanao.baihongyu.com/

你可能感兴趣的文章
Objective-C基础语法规则教程
查看>>
fiddler的使用
查看>>
Spring事务5种属性
查看>>
css图片对齐排版思路
查看>>
如何将sql 2000数据库 移植到 mysql 数据库中
查看>>
视频播放的优化与切换测试记录
查看>>
LoadRunner脚本之EXTRARES参数
查看>>
我的友情链接
查看>>
linux下为什么删除了文件空间却不释放?
查看>>
shell脚本之循环语句
查看>>
感到自己自私和无力
查看>>
更改EMC-Powerpath软件的路径工作模式
查看>>
软件管理
查看>>
[ Talk is Cheap Show me the CODE ] : jQuery Mobile
查看>>
LVM——逻辑卷管理
查看>>
离线安装gcc(CentOS7)
查看>>
客运车辆监管及运营平台
查看>>
eclipse添加注释
查看>>
贝叶斯估计和最大后验估计
查看>>
COBBLER无人值守安装
查看>>