11Python标准库系列之configparser模块

简介:

Python标准库系列之configparser模块


This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what’s found in Microsoft Windows INI files. You can use this to write Python programs which can be customized by end users easily.


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

配置文件格式如下:

1
2
3
4
5
6
# 第一种注释方式
; 第二种注释方式
 
[node1]   # 节点
k1  =  v1   # key = value
k2 : v2   # key : value

实例

创建一个file.conf文件,内容为空,然后进入pythonIDE:

1
2
3
4
5
6
[root@ansheng ~] # touch file.conf 
[root@ansheng ~] # python
Python  2.6 . 6  (r266: 84292 , Jul  23  2016 15 : 22 : 56
[GCC  4.4 . 7  20120313  (Red Hat  4.4 . 7 - 11 )] on linux2
Type  "help" "copyright" "credits"  or  "license"  for  more information.
>>>

为文件添加节点

1
2
3
4
5
6
7
8
>>>  import  configparser
>>> config  =  configparser.ConfigParser()
>>> config.read( 'file.conf' , encoding = 'utf-8' )
[ 'file.conf' ]
# 添加节点"node1","node2",然后写入文件
>>> config.add_section( "node1" )
>>> config.add_section( "node2" )
>>> config.write( open ( 'file.conf' 'w' ))

检查节点是否存在

1
2
3
4
5
6
7
# 如果文件存在则返回"True",否则就返回"False"
>>>  print (config.has_section( 'node1' ))
True
>>>  print (config.has_section( 'node2' ))
True
>>>  print (config.has_section( 'node3' ))
False

删除节点

1
2
3
4
5
6
# 如果删除的节点存在则返回"True",否则返回"False"
>>> config.remove_section( "node2" )
True
>>> config.write( open ( 'file.conf' 'w' ))
>>>  print (config.has_section( 'node2' ))
False

设置节点内的键值对

1
2
3
4
5
6
# 添加完键值对之后别忘记了写入到文件中
>>> config. set ( 'node1' 'Name' "ansheng" )
>>> config. set ( 'node1' 'Blog_URL' "https://blog.ansheng.me" )
>>> config. set ( 'node1' 'Hostname' "localhost.localhost" )
>>> config. set ( 'node1' 'IP' "127.0.0.1" )
>>> config.write( open ( 'file.conf' 'w' ))

检查节点内的key是否存在

1
2
3
4
5
6
7
# 如果节点的Key存在就返回"True",否则返回"False"
>>>  print (config.has_option( 'node1' 'Name' ))
True
>>>  print (config.has_option( 'node1' 'IP' ))
True
>>>  print (config.has_option( 'node1' 'VV' ))
False

删除节点内的key

1
2
3
4
5
6
# 如果删除的节点存在就返回"True",否则就返回"False"
>>> config.remove_option( 'node1' 'IP' )
True
>>> config.write( open ( 'file.conf' 'w' ))
>>>  print (config.has_option( 'node1' 'IP' ))
False

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

1
2
3
4
5
6
7
8
9
# 默认返回的是字符串类型
>>> config.get( 'node1' 'Name' )
'ansheng'
>>> config.get( 'node1' 'Blog_URL' )
'https://blog.ansheng.me'
# 返回的字符串我们可以设置成一下三种数据类型,分别是"int","float","bool"
# v = config.getint('node1', 'k1')
# v = config.getfloat('node1', 'k1')
# v = config.getboolean('node1', 'k1')

获取指定节点下所有的key

1
2
3
# 返回节点下面所有的Key列表
>>> config.options( 'node1' )
[ 'name' 'blog_url' 'hostname' ]

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

# 返回一个列表,列表中每个元组就是一个键值对
>>> config.items('node1')
[('name', 'ansheng'), ('blog_url', 'https://blog.ansheng.me'), ('hostname', 'localhost.localhost')]

获取所有节点

1
2
3
# 获取当前文件中有多少个节点
>>> config.sections()
[ 'node1' ]









本文转自 Edenwy  51CTO博客,原文链接:http://blog.51cto.com/edeny/1925757,如需转载请自行联系原作者
目录
相关文章
|
16天前
|
Python
Python Internet 模块
Python Internet 模块。
116 74
|
20天前
|
XML JSON 数据库
Python的标准库
Python的标准库
158 77
|
2月前
|
算法 数据安全/隐私保护 开发者
马特赛特旋转算法:Python的随机模块背后的力量
马特赛特旋转算法是Python `random`模块的核心,由松本真和西村拓士于1997年提出。它基于线性反馈移位寄存器,具有超长周期和高维均匀性,适用于模拟、密码学等领域。Python中通过设置种子值初始化状态数组,经状态更新和输出提取生成随机数,代码简单高效。
116 63
|
2月前
|
测试技术 Python
手动解决Python模块和包依赖冲突的具体步骤是什么?
需要注意的是,手动解决依赖冲突可能需要一定的时间和经验,并且需要谨慎操作,避免引入新的问题。在实际操作中,还可以结合使用其他方法,如虚拟环境等,来更好地管理和解决依赖冲突😉。
|
2月前
|
持续交付 Python
如何在Python中自动解决模块和包的依赖冲突?
完全自动解决所有依赖冲突可能并不总是可行,特别是在复杂的项目中。有时候仍然需要人工干预和判断。自动解决的方法主要是提供辅助和便捷,但不能完全替代人工的分析和决策😉。
|
2月前
|
机器学习/深度学习 算法 数据挖掘
数据分析的 10 个最佳 Python 库
数据分析的 10 个最佳 Python 库
94 4
数据分析的 10 个最佳 Python 库
|
21天前
|
XML JSON 数据库
Python的标准库
Python的标准库
47 11
|
2月前
|
人工智能 API 开发工具
aisuite:吴恩达发布开源Python库,一个接口调用多个大模型
吴恩达发布的开源Python库aisuite,提供了一个统一的接口来调用多个大型语言模型(LLM)服务。支持包括OpenAI、Anthropic、Azure等在内的11个模型平台,简化了多模型管理和测试的工作,促进了人工智能技术的应用和发展。
119 1
aisuite:吴恩达发布开源Python库,一个接口调用多个大模型
|
21天前
|
数据可视化 Python
以下是一些常用的图表类型及其Python代码示例,使用Matplotlib和Seaborn库。
通过这些思维导图和分析说明表,您可以更直观地理解和选择适合的数据可视化图表类型,帮助更有效地展示和分析数据。
60 8
|
29天前
|
安全 API 文件存储
Yagmail邮件发送库:如何用Python实现自动化邮件营销?
本文详细介绍了如何使用Yagmail库实现自动化邮件营销。Yagmail是一个简洁强大的Python库,能简化邮件发送流程,支持文本、HTML邮件及附件发送,适用于数字营销场景。文章涵盖了Yagmail的基本使用、高级功能、案例分析及最佳实践,帮助读者轻松上手。
34 4