Python操作配置文件configparser模块
在实际的开发过程中,我们常有操作ini格式和conf格式配置文件的操作,Python为我们提供了configparser模块,方便我们对配置文件进行读写操作。
config.ini配置文件内容如下:
[email]
user = root
password = aaaaaa
port =
host = smtp..com [thread]
thread =
1.读取配置文件
方法 | 说明 |
read(filename) | 直接读取配置文件内容 |
sections() | 以列表的形式返回所有section |
options(section) | 得到对应section下的所有option |
items(section) | 得到对应section下的所有键值对 |
get(section,option) | 得到对应的section中的option的值,并以string的类型返回 |
getint(section,option) | 得到对应的section中的option的值,并以int的类型返回 |
# -*- coding:utf- -*-
import configparser cf = configparser.ConfigParser() # 实例化ConfigParser对象 cf.read("config.ini") # 读取文件 sections = cf.sections() print(sections) # 以列表的形式返回所有的section options = cf.options("email") # 返回email section下的所有option print(options) kvs = cf.items("email") print(kvs) # 以键值对的形式返回email section下的所有option user = cf.get("email", "user") # 获取email section下user option对应的值
port = cf.getint("email", "port") # 获取port对应的int类型的值 print(user)
print(port) --------输出结果------- ['email', 'thread']
['user', 'password', 'port', 'host']
[('user', 'root'), ('password', 'aaaaaa'), ('port', ''), ('host', 'smtp.126.com')]
root
2.写入配置文件
方法 | 说明 |
write(fp) | 将config对象写入到某个ini格式的文件 |
add_section(section) | 添加一个新的section |
set(section, option, value) | 对section中的option进行设置,需要调用write方法将内容写入到文件 |
remove_section(section) | 从配置文件中删除指定的section |
remove_option(section, option) | 从配置文件中删除指定section下的option |
# -*- coding:utf- -*-
import configparser cf = configparser.ConfigParser() # 实例化ConfigParser对象 cf.add_section("testsection") cf.set("testsection", "computer", "asus") with open("config.ini", "w+") as file:
cf.write(file)
Python操作配置文件configparser模块的更多相关文章
- python:实例化configparser模块读写配置文件
之前的博客介绍过利用python的configparser模块读写配置文件的基础用法,这篇博客,介绍下如何实例化,方便作为公共类调用. 实例化的好处有很多,既方便调用,又降低了脚本的维护成本,而且提高 ...
- python:利用configparser模块读写配置文件
在自动化测试过程中,为了提高脚本的可读性和降低维护成本,将一些通用信息写入配置文件,将重复使用的方法写成公共模块进行封装,使用时候直接调用即可. 这篇博客,介绍下python中利用configpars ...
- Python 标准库 ConfigParser 模块 的使用
Python 标准库 ConfigParser 模块 的使用 demo #!/usr/bin/env python # coding=utf-8 import ConfigParser import ...
- Python自动化测试 (二) ConfigParser模块读写配置文件
ConfigParser 是Python自带的模块, 用来读写配置文件, 用法及其简单. 直接上代码,不解释,不多说. 配置文件的格式是: []包含的叫section, section 下有op ...
- python 配置文件 ConfigParser模块
ConfigParser模块 用于生成和修改常见配置文档,当前模块的名称在 python 3.x 版本中变更为 configparser. 来看一个好多软件的常见文档格式如下 [DEFAULT] Se ...
- Python语言的configparser模块便捷的读取配置文件内容
配置文件是在写脚本过程中经常会用到的,所以读取配置文件的模块configparser也非常重要,但是很简单. 首先我们的配置文件内容为: 这样的配置文件,[]里面的内容叫section,[]下面的内容 ...
- python读取配置文件 ConfigParser
Python 标准库的 ConfigParser 模块提供一套 API 来读取和操作配置文件. 配置文件的格式 a) 配置文件中包含一个或多个 section, 每个 section 有自己的 opt ...
- python学习之 - configparser模块
configparser模块功能:用于生成和修改常见配置文件.基本常用方法如下: read(filename):直接读取配置文件write(filename):将修改后的配置文件写入文件中.defau ...
- Python操作mysql之模块pymysql
pymsql是Python中操作MySQL的模块,其使用方法和MySQLdb几乎相同.但目前pymysql支持python3.x而后者不支持3.x版本. 本文环境 python3.6.1 Mysql ...
随机推荐
- Scrum由来
历史故事 在越南战争期间(1955年-1975年),对于美国战机飞行员而言,要执行100次飞行任务,飞到敌国领空被击落的概率是50%. 1967年,萨瑟兰还是一个没有经验的年轻飞行员,当时却是做最危险 ...
- siebel简介
定义公司架构.描述S应用架构.安装应用.配置S.自动化的业务规则.数据整合.不同环境如何整合. 一.介绍CRM 销售.Callcenter等 允许管理客户和联系人. 二.Using the web c ...
- css实现文本过长时自动添加省略号
1. 效果 2. Html <div id="main_app_content" class="container"> <div class= ...
- react native android 真机调试
http://localhost:8081/index.android.bundle?platform=android 晕死,设备掉线了 C:\Users\ZHONGZHENHUA\.android\ ...
- linux系统中的进程
一.fork 在类unix系统中,我们所执行的任何程序,都是由父进程(parent process)所产生出来的一个子进程(child process),子进程在结束后,将返回到父进程去.此一现象被称 ...
- p2598 [ZJOI2009]狼和羊的故事
传送门 分析 起点向狼连边,羊向终点连边,边权均为inf 每个点向它四联通的点连边权萎1的边 跑最小割即可 代码 #include<iostream> #include<cstdio ...
- Qt编译,imp_CommandLineToArgvW@8问题
Tested msvc2013. The linker can not find _imp_CommandLineToArgvW@8. It's in shell32.lib. I see qtmai ...
- lnmp一键安装包 配置多站点
在/usr/local/nginx/conf/vhost下配置多站点的文件,一个站点对应一个文件,配置如下信息: vim ./vhost/test.conf server { listen ; ser ...
- javascrip总结42:属性操作案例: 点击盒子,改变盒子的位置和背景颜色
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8& ...
- Fiddldr 教程之:HTTP协议详解(转)
原文地址:http://www.cnblogs.com/TankXiao/archive/2012/02/13/2342672.html HTTP协议详解 当今web程序的开发技术真是百家争鸣,ASP ...