51

如果解析一个简单的 Java 样式文件,该文件的内容是键值对(即没有 INI 样式的节标题),该ConfigParser模块将引发异常。.properties有一些解决方法吗?

4

10 回答 10

79

假设你有,例如:

$ cat my.props
first: primo
second: secondo
third: terzo

ie 将是一种.config格式,只是它缺少前导部分名称。然后,很容易伪造节标题:

import ConfigParser

class FakeSecHead(object):
    def __init__(self, fp):
        self.fp = fp
        self.sechead = '[asection]\n'

    def readline(self):
        if self.sechead:
            try: 
                return self.sechead
            finally: 
                self.sechead = None
        else: 
            return self.fp.readline()

用法:

cp = ConfigParser.SafeConfigParser()
cp.readfp(FakeSecHead(open('my.props')))
print cp.items('asection')

输出:

[('second', 'secondo'), ('third', 'terzo'), ('first', 'primo')]
于 2010-05-12T14:36:38.823 回答
69

我认为MestreLion 的“read_string”评论很好很简单,值得一个例子。

对于 Python 3.2+,您可以像这样实现“虚拟部分”的想法:

with open(CONFIG_PATH, 'r') as f:
    config_string = '[dummy_section]\n' + f.read()
config = configparser.ConfigParser()
config.read_string(config_string)
于 2014-08-25T20:11:06.270 回答
32

我的解决方案是使用StringIO并预先添加一个简单的虚拟标头:

import StringIO
import os
config = StringIO.StringIO()
config.write('[dummysection]\n')
config.write(open('myrealconfig.ini').read())
config.seek(0, os.SEEK_SET)

import ConfigParser
cp = ConfigParser.ConfigParser()
cp.readfp(config)
somevalue = cp.getint('dummysection', 'somevalue')
于 2011-12-28T15:13:32.043 回答
21

Alex Martelli 上面的回答不适用于 Python 3.2+:readfp()已被替换read_file(),现在它需要一个迭代器而不是使用该readline()方法。

这是一个使用相同方法的片段,但适用于 Python 3.2+。

>>> import configparser
>>> def add_section_header(properties_file, header_name):
...   # configparser.ConfigParser requires at least one section header in a properties file.
...   # Our properties file doesn't have one, so add a header to it on the fly.
...   yield '[{}]\n'.format(header_name)
...   for line in properties_file:
...     yield line
...
>>> file = open('my.props', encoding="utf_8")
>>> config = configparser.ConfigParser()
>>> config.read_file(add_section_header(file, 'asection'), source='my.props')
>>> config['asection']['first']
'primo'
>>> dict(config['asection'])
{'second': 'secondo', 'third': 'terzo', 'first': 'primo'}
>>>
于 2011-12-18T23:46:01.637 回答
8
with open('some.properties') as file:
    props = dict(line.strip().split('=', 1) for line in file)

归功于如何创建包含来自文本文件的键值对的字典

maxsplit=1如果值中有等号,则很重要(例如someUrl=https://some.site.com/endpoint?id=some-value&someotherkey=value

于 2018-07-02T16:06:18.400 回答
6

耶!另一个版本

基于此答案(添加使用dict,with声明并支持%字符)

import ConfigParser
import StringIO
import os

def read_properties_file(file_path):
    with open(file_path) as f:
        config = StringIO.StringIO()
        config.write('[dummy_section]\n')
        config.write(f.read().replace('%', '%%'))
        config.seek(0, os.SEEK_SET)

        cp = ConfigParser.SafeConfigParser()
        cp.readfp(config)

        return dict(cp.items('dummy_section'))

用法

props = read_properties_file('/tmp/database.properties')

# It will raise if `name` is not in the properties file
name = props['name']

# And if you deal with optional settings, use:
connection_string = props.get('connection-string')
password = props.get('password')

print name, connection_string, password

.properties我的示例中使用的文件

name=mongo
connection-string=mongodb://...
password=my-password%1234

编辑 2015-11-06

感谢尼尔·利马提到这个%角色有问题。

这样做的原因是ConfigParser为了解析.ini文件。%字符是一种特殊的语法。为了使用该字符,只需根据语法%添加一个替换为%with 。%%.ini

于 2015-02-17T13:54:41.837 回答
4
from pyjavaproperties import Properties
p = Properties()
p.load(open('test.properties'))
p.list()
print p
print p.items()
print p['name3']
p['name3'] = 'changed = value'
print p['name3']
p['new key'] = 'new value'
p.store(open('test2.properties','w'))
于 2019-02-12T20:18:18.920 回答
2

这个答案建议在 Python 3 中使用 itertools.chain。

from configparser import ConfigParser
from itertools import chain

parser = ConfigParser()
with open("foo.conf") as lines:
    lines = chain(("[dummysection]",), lines)  # This line does the trick.
    parser.read_file(lines)
于 2016-08-17T21:56:14.310 回答
-1
with open('mykeyvaluepairs.properties') as f:
    defaults = dict([line.split() for line in f])
config = configparser.ConfigParser(defaults)
config.add_section('dummy_section')

现在config.get('dummy_section', option)将从默认部分返回“选项”。

或者:

with open('mykeyvaluepairs.properties') as f:
    properties = dict([line.split() for line in f])
config = configparser.ConfigParser()
config.add_section('properties')
for prop, val in properties.items():
    config.set('properties', prop, val)

在这种情况下config.get('properties', option),不诉诸默认部分。

于 2013-09-08T05:43:29.213 回答
-1

python2.7 的另一个答案基于Alex Martelli 的回答

import ConfigParser

class PropertiesParser(object):

    """Parse a java like properties file

    Parser wrapping around ConfigParser allowing reading of java like
    properties file. Based on stackoverflow example:
    https://stackoverflow.com/questions/2819696/parsing-properties-file-in-python/2819788#2819788

    Example usage
    -------------
    >>> pp = PropertiesParser()
    >>> props = pp.parse('/home/kola/configfiles/dev/application.properties')
    >>> print props

    """

    def __init__(self):
        self.secheadname = 'fakeSectionHead'
        self.sechead = '[' + self.secheadname + ']\n'

    def readline(self):
        if self.sechead:
            try:
                return self.sechead
            finally:
                self.sechead = None
        else:
            return self.fp.readline()

    def parse(self, filepath):
        self.fp = open(filepath)
        cp = ConfigParser.SafeConfigParser()
        cp.readfp(self)
        self.fp.close()
        return cp.items(self.secheadname)
于 2017-10-23T17:11:56.190 回答