如何使用python configparser ? 请举个例子。
时间: 2023-05-11 18:05:43 浏览: 137
可以使用以下代码来使用python configparser:
```
import configparser
# 创建一个configparser对象
config = configparser.ConfigParser()
# 读取配置文件
config.read('example.ini')
# 获取配置文件中的值
value = config.get('section_name', 'key_name')
# 设置配置文件中的值
config.set('section_name', 'key_name', 'new_value')
# 写入配置文件
with open('example.ini', 'w') as configfile:
config.write(configfile)
```
其中,'example.ini'是配置文件的文件名,'section_name'是配置文件中的一个段落,'key_name'是该段落中的一个键,'new_value'是要设置的新值。
相关问题
使用python configparser 写个实例
好的,这是一个关于 Python configparser 的实例:
假设我们有一个配置文件 config.ini,内容如下:
```
[database]
host = localhost
port = 3306
username = root
password = 123456
database = test
[other]
debug = True
```
我们想要读取里面的配置信息,可以用下面的 Python 代码:
```python
import configparser
config = configparser.ConfigParser()
config.read('config.ini')
# 读取 database 的配置信息
host = config.get('database', 'host')
port = config.getint('database', 'port')
username = config.get('database', 'username')
password = config.get('database', 'password')
database = config.get('database', 'database')
# 读取 other 部分的配置信息
debug = config.getboolean('other', 'debug')
```
这样就可以读取配置文件中的各个配置项了。
python configparser
configparser 是 Python 标准库中的一个模块,用于读取和写入配置文件。它支持 INI 格式的配置文件,允许用户创建和编辑配置文件中的节、键值对以及注释。使用 configparser 模块可以方便地读取和修改配置文件中的信息。
阅读全文