web-dev-qa-db-ja.com

Pythonの.propertiesファイルの解析

ConfigParser モジュールは、単純なJavaスタイル.propertiesファイル。内容はキーと値のペアです(つまり、INIスタイルのセクションヘッダーなし)。回避策はありますか?

48
Tshepang

あなたが持っていると言う、例えば:

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

つまり、.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')]
74
Alex Martelli

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)
40
CoupleWavyLines

私の解決策は、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')
32
tauran

上記の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'}
>>>
18
Oscar de Groot

わーい!別のバージョン

この回答 に基づいて(追加はdictwithステートメントを使用し、%文字をサポートしています)

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

Neill Lima のおかげで、%文字に問題がありました。

その理由は、.iniファイルを解析するために設計されたConfigParserです。 %文字は特別な構文です。 %文字を使用するには、%構文に従って%%.iniに置き換えるだけです。

4
Jossef Harush
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

4
user9192156
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'))
1
Andy Quiroz

この答え itertools.chainをPython 3。

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)
1
Christian Long