python configparser模块

Posted lides

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python configparser模块相关的知识,希望对你有一定的参考价值。

‘‘‘
ConfigParser 是用来读取配置文件的包
‘‘‘

import configparser

config = configparser.ConfigParser()
config.read("ini", encoding="utf-8")

def config_test():
# 获取配置文件下的所有一级键
db = config.sections()
print(db)
# 获取某个sections下面的所有键
db = config.options("db")
print(db)
# 获取某个sections下面的所有键值对
db = config.items(‘db‘)
print(db)
# 获取某个sections下面的某个键的值
db = config.get(‘db‘,‘db_user‘)
print(db)
# 修改
config.set(‘db‘,‘db_user‘,‘test‘)
if not config.has_section("default"): # 检查是否存在section
# 添加
config.add_section("default")
# 删除,整个section下的所有内容都将删除
config.remove_section("default")
# 写入
config.write(open(‘ini‘,‘w‘,encoding=‘utf8‘))
if __name__ == ‘__main__‘:
config_test()
pass

以上是关于python configparser模块的主要内容,如果未能解决你的问题,请参考以下文章

python封装configparser模块获取conf.ini值(优化版)

python基础学习第七天

python configparser模块的应用

python-configparser模块

python常用模块之configparser模块

python模块---configparser 编辑ini文件