Python----configparser模块的用法

简介: Python----configparser模块的用法

1 configparser 使用get方式读取.ini配置文件的配置内容

  • (1)首先编写如下所示的env.ini配置文件
[server]
ip=192.168.1.200
port=22
username=root
password=root

[personal]
name=redrose2100
city=nanjing
github=redrose2100.github.io
  • (2) 编写解析.ini配置文件的python代码
import configparser

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


print(config.get("server","ip"))
print(config.get("personal","name"))

运行结果为:

192.168.1.200
redrose2100

2 使用数组下标的方式读取.ini配置文件的内容

env.ini的内容同上述1中的内容

通过数组下标的方式读取配置文件内容的代码如下:

import configparser

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


print(config["server"]["ip"])
print(config["personal"]["name"])

执行结果如下:

192.168.1.200
redrose2100

3 使用configparser写配置文件

import configparser

config=configparser.ConfigParser()

config["server"]={
    "ip":"192.138.1.200",
    "port":22,
    "username":"root",
    "password":"root"
}

config["personal"]={
    "name":"redrose2100",
    "city":"nanjing"
}

with open("test.ini","w") as f:
    config.write(f)

执行之后,在当前目录下会生成一个test.ini文件,其内容如下:

[server]
ip = 192.138.1.200
port = 22
username = root
password = root

[personal]
name = redrose2100
city = nanjing

4 configparser 对section常用的操作:

  • (1)has_section(section) 判断读取的config对象是否还有指定的section
  • (2)sections() 获取读取到的config对象的所有sections列表
  • (3)add_section(section) 给读取到的config对象增加一个section,注意此时增加的section只是在config对象中,并没有写入到ini配置文件中
  • (4)remove_section(section) 给读取到的config对象删除一个section

实例代码如下所示:

import configparser

config=configparser.ConfigParser()
config.read("env.ini","utf-8")
print(config.has_section("server"))
print(config.sections())
config.add_section("kafka")
print(config.sections())
config.remove_section("kafka")
print(config.sections())

运行结果如下:

import configparser

config=configparser.ConfigParser()
config.read("env.ini","utf-8")
print(config.has_section("server"))
print(config.sections())
config.add_section("kafka")
print(config.sections())
config.remove_section("kafka")
print(config.sections())

5 configparser对option常用的操作,如下代码演示:

import configparser

config=configparser.ConfigParser()
config.read("env.ini","utf-8")
print(config.has_option("server","ip"))
print(config.options("server"))
config.set("server","test","test")
print(config.options("server"))
config.remove_option("server","test")
print(config.options("server"))

执行结果为:

True
['ip', 'port', 'username', 'password']
['ip', 'port', 'username', 'password', 'test']
['ip', 'port', 'username', 'password']

6 configparser的对象可以类似字典一样使用,但是类型不是字典,代码演示如下:

import configparser

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

for key in config["server"].keys():
    print(key)

for key,value in config["server"].items():
    print(key,value)

for value in config["server"].values():
    print(value)

item=config["server"].popitem()
print(type(item))
print(item)

port=config["server"].pop("port")
print(port)

for key,value in config["server"].items():
    print(key,value)

username=config["server"].get("username","no found")
print(username)

print(type(config["server"]))

运行结果如下:

ip
port
username
password
ip 192.168.1.200
port 22
username root
password root
192.168.1.200
22
root
root
<class 'tuple'>
('ip', '192.168.1.200')
22
username root
password root
root
<class 'configparser.SectionProxy'>

7 可以将获取的类型直接转换为期望的数据类型,可用的方法有:

  • getint
  • getboolean
  • getfloat
  • get

下面将配置文件更新如下内容:

[server]
ip=192.168.1.200
port=22
username=root
password=root
is_linux=True
price=100.24

[personal]
name=redrose2100
city=nanjing
github=redrose2100.github.io

实例代码如下:

import configparser

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

ip=config["server"].get("ip")
port=config["server"].getint("port")
is_linux=config["server"].getboolean("is_linux")
price=config["server"].getfloat("price")
print(ip,type(ip))
print(port,type(port))
print(is_linux,type(is_linux))
print(price,type(price))

运行结果如下:

192.168.1.200 <class 'str'>
22 <class 'int'>
True <class 'bool'>
100.24 <class 'float'>

8 configparser标准库对解析.conf文件与解析.ini文件的使用方法是完全一样的,下面只演示一部分:

创建一个env.conf文件,内容如下:

[server]
ip=192.168.1.200
port=22
username=root
password=root
is_linux=True
price=100.24

[personal]
name=redrose2100
city=nanjing
github=redrose2100.github.io

编写如下代码:

import configparser


config=configparser.ConfigParser()
config.read("env.conf","utf-8")


print(config.get("server","ip"))
print(config.get("personal","name"))

print(config["server"]["ip"])
print(config["personal"]["name"])

运行结果如下:

192.168.1.200
redrose2100
192.168.1.200
redrose2100
目录
相关文章
|
2天前
|
数据采集 Web App开发 JavaScript
python-selenium模块详解!!!
Selenium 是一个强大的自动化测试工具,支持 Python 调用浏览器进行网页抓取。本文介绍了 Selenium 的安装、基本使用、元素定位、高级操作等内容。主要内容包括:发送请求、加载网页、元素定位、处理 Cookie、无头浏览器设置、页面等待、窗口和 iframe 切换等。通过示例代码帮助读者快速掌握 Selenium 的核心功能。
18 5
|
5天前
|
Python
SciPy 教程 之 SciPy 模块列表 6
SciPy教程之常量模块介绍:涵盖公制、二进制(字节)、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率及力学单位。示例展示了角度单位转换为弧度的几个常用常量。
14 7
|
5天前
|
Python
SciPy 教程 之 SciPy 模块列表 7
`scipy.constants` 模块提供了常用的时间单位转换为秒数的功能。例如,`constants.hour` 返回 3600.0 秒,表示一小时的秒数。其他常用时间单位包括分钟、天、周、年和儒略年。
12 6
|
3天前
|
Python
SciPy 教程 之 SciPy 模块列表 13
SciPy教程之SciPy模块列表13:单位类型。常量模块包含多种单位,如公制、二进制(字节)、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例代码展示了如何使用`constants`模块获取零摄氏度对应的开尔文值(273.15)和华氏度与摄氏度的转换系数(0.5556)。
8 1
|
4天前
|
XML 前端开发 数据格式
超级详细的python中bs4模块详解
Beautiful Soup 是一个用于从网页中抓取数据的 Python 库,提供了简单易用的函数来处理导航、搜索和修改分析树。支持多种解析器,如 Python 标准库中的 HTML 解析器和更强大的 lxml 解析器。通过简单的代码即可实现复杂的数据抓取任务。本文介绍了 Beautiful Soup 的安装、基本使用、对象类型、文档树遍历和搜索方法,以及 CSS 选择器的使用。
14 1
|
4天前
|
Python
SciPy 教程 之 SciPy 模块列表 9
SciPy教程之常量模块介绍,涵盖多种单位类型,如公制、质量、角度、时间、长度、压强等。示例展示了如何使用`scipy.constants`模块查询不同压强单位对应的帕斯卡值,包括atm、bar、torr、mmHg和psi。
8 1
|
4天前
|
Python
SciPy 教程 之 SciPy 模块列表 8
SciPy教程之常量模块单位类型介绍。该模块包含多种单位,如公制、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例展示了部分长度单位的转换值,例如英寸、英尺、海里等。
9 1
|
6天前
|
知识图谱 Python
SciPy 教程 之 SciPy 模块列表 5
本教程介绍SciPy常量模块中的单位类型,涵盖公制、质量、时间、长度等单位。示例代码展示了如何使用`scipy.constants`模块获取不同质量单位的千克值,如公吨、磅、盎司、原子质量单位等。
9 1
|
12天前
|
消息中间件 监控 网络协议
Python中的Socket魔法:如何利用socket模块构建强大的网络通信
本文介绍了Python的`socket`模块,讲解了其基本概念、语法和使用方法。通过简单的TCP服务器和客户端示例,展示了如何创建、绑定、监听、接受连接及发送/接收数据。进一步探讨了多用户聊天室的实现,并介绍了非阻塞IO和多路复用技术以提高并发处理能力。最后,讨论了`socket`模块在现代网络编程中的应用及其与其他通信方式的关系。
|
1天前
|
Python
SciPy 教程 之 SciPy 模块列表 16
SciPy教程之SciPy模块列表16 - 单位类型。常量模块包含多种单位,如公制、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例代码展示了力学单位的使用,如牛顿、磅力和千克力等。
4 0