python读取配置文件 ConfigParser

Python 标准库的 ConfigParser 模块提供一套 API 来读取和操作配置文件。

配置文件的格式

a) 配置文件中包含一个或多个 section, 每个 section 有自己的 option;

b) section 用 [sect_name] 表示,每个option是一个键值对,使用分隔符 = 或 : 隔开;

c) 在 option 分隔符两端的空格会被忽略掉

d) 配置文件使用 # 和 ; 注释

一个简单的配置文件样例 myapp.conf


1

2

3

4

5

6

7

8

9

10

11

12

# database source

[db]

host = 127.0.0.1

port = 3306

user = root

pass = root

# ssh

[ssh]

host = 192.168.1.101

user = huey

pass = huey

 ConfigParser 的基本操作

a) 实例化 ConfigParser 并加载配置文件


1

2

cp = ConfigParser.SafeConfigParser()

cp.read(‘myapp.conf‘)

b) 获取 section 列表、option 键列表和 option 键值元组列表


1

2

3

print ‘all sections:‘, cp.sections()        # sections: [‘db‘, ‘ssh‘]

print ‘options of [db]:‘, cp.options(‘db‘)  # options of [db]: [‘host‘, ‘port‘, ‘user‘, ‘pass‘]

print ‘items of [ssh]:‘, cp.items(‘ssh‘)    # items of [ssh]: [(‘host‘, ‘192.168.1.101‘), (‘user‘, ‘huey‘), (‘pass‘, ‘huey‘)]

c) 读取指定的配置信息


1

2

print ‘host of db:‘, cp.get(‘db‘‘host‘)     # host of db: 127.0.0.1

print ‘host of ssh:‘, cp.get(‘ssh‘‘host‘)   # host of ssh: 192.168.1.101

d) 按类型读取配置信息:getint、 getfloat 和 getboolean

print type(cp.getint(‘db‘, ‘port‘))        # <type ‘int‘>

e) 判断 option 是否存在


1

print cp.has_option(‘db‘‘host‘)    # True  

f) 设置 option


1

cp.set(‘db‘‘host‘,‘192.168.1.102‘)

g) 删除 option


1

cp.remove_option(‘db‘‘host‘)

h) 判断 section 是否存在

print cp.has_section(‘db‘)    # True

i) 添加 section

cp.add_section(‘new_sect‘)

j) 删除 section

cp.remove_section(‘db‘)

k) 保存配置,set、 remove_option、 add_section 和 remove_section 等操作并不会修改配置文件,write 方法可以将 ConfigParser 对象的配置写到文件中

cp.write(open(‘myapp.conf‘, ‘w‘))
cp.write(sys.stdout)

Unicode 编码的配置

配置文件如果包含 Unicode 编码的数据,需要使用 codecs 模块以合适的编码打开配置文件。

myapp.conf

[msg]
hello = 你好

config_parser_unicode.py

import ConfigParser
import codecs

cp = ConfigParser.SafeConfigParser()
with codecs.open(‘myapp.conf‘, ‘r‘, encoding=‘utf-8‘) as f:
    cp.readfp(f)

print cp.get(‘msg‘, ‘hello‘)

allow_no_value

通常情况下, option 是一个键值对。但是,当 SafeConfigParser 的参数 allow_no_value 设置成 True 时,它允许 option 不设置值而只是作为一个标识。

allow_no_value.conf

# option as Flag
[flag]
flag_opt

allow_no_value.py

import ConfigParser

cp = ConfigParser.SafeConfigParser(allow_no_value = True)
cp.read(‘myapp.conf‘)
print cp.get(‘flag‘, ‘flag_opt‘);    # None

allow_no_value 默认设置成 False,此时如果配置文件中存在没有设置值的 option,在读取配置文件时将抛出异常 ConfigParser.ParsingError。当 allow_no_value 设置成 True 时,如果一个 option 没有设置值,has_option 方法会返回 True,get 方法会返回 None。

DEFAULT section

如果配置文件中存在一个名为 DEFAULT 的 section,那么其他 section 会扩展它的 option 并且可以覆盖它的 option。

db.conf

[DEFAULT]
host = 127.0.0.1
port = 3306

[db_root]
user = root
pass = root

[db_huey]
host = 192.168.1.101
user = huey
pass = huey

default_section.py

print cp.get(‘db_root‘, ‘host‘)    # 127.0.0.1
print cp.get(‘db_huey‘, ‘host‘)    # 192.168.1.101

插值 Interpolation

SafeConfigParser 提供了插值的特性来结合数据。

url.conf

[DEFAULT]
url = %(protocol)s://%(server)s:%(port)s/

[http]
protocol = http
server = localhost
port = 8080

[ftp]
url = %(protocol)s://%(server)s/
protocol = ftp
server = 192.168.1.102

interpolation_demo.py

import ConfigParser

cp = ConfigParser.SafeConfigParser()
cp.read(‘url.conf‘)

print cp.get(‘http‘, ‘url‘)    # http://localhost:8080/
print cp.get(‘ftp‘, ‘url‘)     # ftp://192.168.1.102/

更多 ConfigParser 的使用,参考:

http://blog.csdn.net/zm2714/article/details/8002125

时间: 2024-11-03 03:40:56

python读取配置文件 ConfigParser的相关文章

python读取配置文件 变量 ConfigParser模块

Python 读取写入配置文件很方便,可使用内置的 configparser 模块配置文件:config.ini [oppo] platformName = Android platformVersion = 6.0 deviceName = weiruoyu appPackage = com.sina.weibo appActivity = .SplashActivity url = http://127.0.0.1:4723/wd/hub [mysql] host=127.0.0.1 por

python读取配置文件的方式

python读取配置文件的方式 1.从config.ini中读取,后缀无所谓,文件名字也无所谓,不过config.ini是常用写法,所谓见名知意 config.ini内容: [global] ip = xxx port = xxx table = xxx uname = xxx passwd = xxx 读取方法 import configparser import os dir_now = os.path.dirname(os.path.dirname(os.path.abspath("set

Python操作配置文件configparser模块

在实际的开发过程中,我们常有操作ini格式和conf格式配置文件的操作,Python为我们提供了configparser模块,方便我们对配置文件进行读写操作. config.ini配置文件内容如下: [email] user = root password = aaaaaa port = 25 host = smtp.126.com [thread] thread = 3 1.读取配置文件 方法 说明 read(filename) 直接读取配置文件内容 sections() 以列表的形式返回所有

python解析配置文件---configparser模块

1.configparser模块介绍 configparser是用来读取配置文件的模块,配置文件格式为:中括号"[ ]"内包含的为section.section 下面为类似于key-value 的配置内容. a.conf的文件内容如下: [user01] name = user01 is_admin = True age = 34 passwd = user123456 [yxwang] name = yxwang age = 25 passwd = 123456 取值: import

Python读取配置文件,并连接数据库SQL Server

用配置文件保存固定的连接数据,改的话比较方便. 1.新建一个配置文件:SQlconfig.config,以数据库为例. 内容如下,当然也可以添加多个 [Database1] database=db_test host=test.sqlserver.rds.alincs.com,3433 user=qhlt_just pwd=zHi4M63wIddlSDK2nY [Database2] database=db_test host=test.sqlserver.rds.alincs.com,3433

用python读取配置文件config.ini

还在学习中...写的有点凌乱 感觉还是应该先学会读取配置文件才行,把一些经常需要修改的但是又经常需要用到的参数放到配置文件中方便使用(我是这么觉得的) 首先是config.ini的存放位置,我们把它放在根目录下(当然也可以随便想放哪放哪) 1 proDir = os.path.split(os.path.realpath(__file__))[0] //根目录地址 2 configPath = os.path.join(proDir, "config.ini") //存放在根目录下,文

python读取配置文件

配置文件setting.ini [app] appName = apptest Ip = 0.0.0.0 Port = 10010 读取方法: import ConfigParser from log4py import log4py var = {} log=log4py("readConfig.py") def getConfig(configFile):     try:         cf = ConfigParser.ConfigParser()         cf.re

python 读取 配置文件

读取方法: def get(section,option):     cp = ConfigParser.SafeConfigParser()     cp.read(os.path.split(os.path.realpath(__file__))[] + )     cp.get(section,option)           配置文件: #mongodb数据库信息 [mongodb] host=192.168.1.102 port=27017 #mysql数据库参数 [mysqldb]

python 读取配置文件的值

上例子: 假设配置文件如下,文件名为test.cfg #------------------------------------ #abcdefg abc = 1 #----------------------------------------- 其中的#号后面的部分都是注释 读入该文件的python代码为: from types import ModuleType import re cfg = [] fcfg = "D:/test.cfg" content = {} try: e