web-dev-qa-db-ja.com

pythonのプロパティファイル(Javaプロパティに類似)

次の形式(。propertiesまたは。ini)を指定します:

propertyName1=propertyValue1
propertyName2=propertyValue2
...
propertyNameN=propertyValueN

Javaには、 Properties クラスがあり、上記の形式を解析/対話する機能を提供します。

python 'sstandardライブラリ(2.x )?

そうでない場合、他にどのような選択肢がありますか?

120
Andrei Ciobanu

.iniファイルには、.iniファイルと互換性のある形式を提供する ConfigParser モジュールがあります。

とにかく、完全な.propertiesファイルを解析するために利用できるものは何もありません。それをしなければならないときは、単にjythonを使用します(スクリプトについて話している)。

59
pygabriel

これをConfigParserで動作させることができたので、これを行う方法の例は誰も示していないので、プロパティファイルの簡単なpythonリーダーとプロパティファイルの例を示します。拡張子はまだ.propertiesですが、.iniファイルに表示されるものと同様のセクションヘッダーを追加する必要がありました...ちょっとしたやつですが、機能します。

pythonファイル:PythonPropertyReader.py

#!/usr/bin/python    
import ConfigParser
config = ConfigParser.RawConfigParser()
config.read('ConfigFile.properties')

print config.get('DatabaseSection', 'database.dbname');

プロパティファイル:ConfigFile.properties

[DatabaseSection]
database.dbname=unitTest
database.user=root
database.password=

より多くの機能については、以下をお読みください: https://docs.python.org/2/library/configparser.html

61
James Oravec

多くの場合、Javaプロパティファイルも有効なpythonコードです。 myconfig.propertiesファイルの名前をmyconfig.pyに変更できます。次に、このようにファイルをインポートします

import myconfig

プロパティに直接アクセスします

print myconfig.propertyName1
60
Travis Bear

私はこれが非常に古い質問であることを知っていますが、今それが必要なので、ほとんどのユースケース(すべてではない)をカバーする独自のソリューション、純粋なpythonソリューションを実装することにしました:

def load_properties(filepath, sep='=', comment_char='#'):
    """
    Read the file passed as parameter as a properties file.
    """
    props = {}
    with open(filepath, "rt") as f:
        for line in f:
            l = line.strip()
            if l and not l.startswith(comment_char):
                key_value = l.split(sep)
                key = key_value[0].strip()
                value = sep.join(key_value[1:]).strip().strip('"') 
                props[key] = value 
    return props

sepを ':'に変更して、次の形式のファイルを解析できます。

key : value

コードは次のような行を正しく解析します。

url = "http://my-Host.com"
name = Paul = Pablo
# This comment line will be ignored

次のように辞書を取得します。

{"url": "http://my-Host.com", "name": "Paul = Pablo" }
47
Roberto

ファイル形式のオプションがある場合は、前述のように.iniとPythonのConfigParserを使用することをお勧めします。 Java .propertiesファイルとの互換性が必要な場合は、 jprops というライブラリを作成しました。私たちはpyjavapropertiesを使用していましたが、さまざまな制限に遭遇した後、自分で実装することになりました。ユニコードのサポートやエスケープシーケンスのより良いサポートなど、.properties形式を完全にサポートしています。 Jpropsはファイルのようなオブジェクトも解析できますが、pyjavapropertiesはディスク上の実際のファイルでのみ機能します。

16
Matt Good

複数行のプロパティがなく、非常に単純なニーズがある場合は、数行のコードで解決できます。

ファイルt.properties

a=b
c=d
e=f

Pythonコード:

with open("t.properties") as f:
    l = [line.split("=") for line in f.readlines()]
    d = {key.strip(): value.strip() for key, value in l}
6
mvallebr

これは正確なプロパティではありませんが、Pythonには、構成ファイルを解析するための Niceライブラリ があります。このレシピも参照してください: A python Java.util.Propertiesの置換

6
Manoj Govindan

ここに私のプロジェクトへのリンクがあります: https://sourceforge.net/projects/pyproperties/ 。これは、Python 3.xの* .propertiesファイルを操作するためのメソッドを備えたライブラリです。

ただし、Java.util.Propertiesに基づいていません

4
marekjm

プロパティファイルのセクションからすべての値を簡単な方法で読み取る必要がある場合:

config.propertiesファイルレイアウト:

[SECTION_NAME]  
key1 = value1  
key2 = value2  

あなたのコード:

   import configparser

   config = configparser.RawConfigParser()
   config.read('path_to_config.properties file')

   details_dict = dict(config.items('SECTION_NAME'))

これにより、キーが構成ファイルと同じ値であり、対応する値の辞書が得られます。

details_dictは:

{'key1':'value1', 'key2':'value2'}

次に、key1の値を取得します:details_dict['key1']

設定ファイルからそのセクションを1回だけ読み取るメソッドにすべてを入れます(プログラムの実行中にメソッドが最初に呼び出されたとき)。

def get_config_dict():
    if not hasattr(get_config_dict, 'config_dict'):
        get_config_dict.config_dict = dict(config.items('SECTION_NAME'))
    return get_config_dict.config_dict

次に、上記の関数を呼び出して、必要なキーの値を取得します。

config_details = get_config_dict()
key_1_value = config_details['key1'] 

-------------------------------------------------- -----------

上記のアプローチを拡張し、セクションごとに自動的に読み取り、次にセクション名に続いてキー名でアクセスします。

def get_config_section():
    if not hasattr(get_config_section, 'section_dict'):
        get_config_section.section_dict = dict()

        for section in config.sections():
            get_config_section.section_dict[section] = 
                             dict(config.items(section))

    return get_config_section.section_dict

アクセスするには:

config_dict = get_config_section()

port = config_dict['DB']['port'] 

(ここで「DB」は設定ファイルのセクション名で、「ポート」はセクション「DB​​」の下のキーです。)

2
MANU

This は、Java.util.Propetiesの1対1の置き換えです

ドキュメントから:

  def __parse(self, lines):
        """ Parse a list of lines and create
        an internal property dictionary """

        # Every line in the file must consist of either a comment
        # or a key-value pair. A key-value pair is a line consisting
        # of a key which is a combination of non-white space characters
        # The separator character between key-value pairs is a '=',
        # ':' or a whitespace character not including the newline.
        # If the '=' or ':' characters are found, in the line, even
        # keys containing whitespace chars are allowed.

        # A line with only a key according to the rules above is also
        # fine. In such case, the value is considered as the empty string.
        # In order to include characters '=' or ':' in a key or value,
        # they have to be properly escaped using the backslash character.

        # Some examples of valid key-value pairs:
        #
        # key     value
        # key=value
        # key:value
        # key     value1,value2,value3
        # key     value1,value2,value3 \
        #         value4, value5
        # key
        # This key= this value
        # key = value1 value2 value3

        # Any line that starts with a '#' is considerered a comment
        # and skipped. Also any trailing or preceding whitespaces
        # are removed from the key/value.

        # This is a line parser. It parses the
        # contents like by line.
2
tmow

pythonのPropertiesクラスにほぼ似たJavaモジュールを作成しました(実際には、参照するために$ {variable-reference}を使用できるSpringのPropertyPlaceholderConfigurerに似ています定義済みのプロパティ)

編集:コマンドを実行することでこのパッケージをインストールできます(現在、python 3でテスト済み)。
pip install property

プロジェクトは GitHub でホストされています

例:(詳細なドキュメントは here にあります)

My_file.propertiesファイルで次のプロパティが定義されているとします

foo = I am awesome
bar = ${chocolate}-bar
chocolate = fudge

上記のプロパティをロードするコード

from properties.p import Property

prop = Property()
# Simply load it into a dictionary
dic_prop = prop.load_property_files('my_file.properties')
2
Anand Joshi

ここで定義されているConfigParser.RawConfigParser.readfpでファイルのようなオブジェクトを使用できます-> https://docs.python.org/2/library/configparser.html#ConfigParser.RawConfigParser.readfp

プロパティファイルの実際の内容の前にセクション名を追加するreadlineをオーバーライドするクラスを定義します。

定義したすべてのプロパティのdictを返すクラスにパッケージ化しました。

import ConfigParser

class PropertiesReader(object):

    def __init__(self, properties_file_name):
        self.name = properties_file_name
        self.main_section = 'main'

        # Add dummy section on top
        self.lines = [ '[%s]\n' % self.main_section ]

        with open(properties_file_name) as f:
            self.lines.extend(f.readlines())

        # This makes sure that iterator in readfp stops
        self.lines.append('')

    def readline(self):
        return self.lines.pop(0)

    def read_properties(self):
        config = ConfigParser.RawConfigParser()

        # Without next line the property names will be lowercased
        config.optionxform = str

        config.readfp(self)
        return dict(config.items(self.main_section))

if __== '__main__':
    print PropertiesReader('/path/to/file.properties').read_properties()

これは私のプロジェクトで行っていることです:私はプロジェクトで使用したすべての一般的な変数/プロパティを含むproperties.pyと呼ばれる別の.pyファイルを作成し、これらの変数を参照する必要があるファイルでは、

from properties import *(or anything you need)

Devの場所を頻繁に変更し、いくつかの一般的な変数がローカル環境にかなり関連していたときに、この方法を使用してsvnの平和を維持しました。私にはうまくいきますが、この方法が正式な開発環境などに提案されるかどうかはわかりません.

2
festony

以下の2行のコードは、Python List Comprehensionを使用して「Javaスタイル」プロパティファイルをロードする方法を示しています。

split_properties=[line.split("=") for line in open('/<path_to_property_file>)]
properties={key: value for key,value in split_properties }

詳細については下記の投稿をご覧ください https://ilearnonlinesite.wordpress.com/2017/07/24/reading-property-file-in-python-using-comprehension-and-generators/

1
Anoop Isaac
import json
f=open('test.json')
x=json.load(f)
f.close()
print(x)

Test.jsonの内容:{"ホスト": "127.0.0.1"、 "ユーザー": "jms"}

1
user1261273

pythonモジュールにディクショナリを作成し、その中にすべてを保存してアクセスします。次に例を示します。

dict = {
       'portalPath' : 'www.xyx.com',
       'elementID': 'submit'}

これにアクセスするには、次の操作を実行します。

submitButton = driver.find_element_by_id(dict['elementID'])
1
Vineet Singh

Lightbendは Typesafe Config ライブラリをリリースしました。これは、プロパティファイルとJSONベースの拡張機能を解析します。 LightbendのライブラリはJVM専用ですが、広く採用されているようで、現在はPythonを含む多くの言語のポートがあります。 https://github.com/chimpler/pyhocon

0
DGrady

これは私のために動作します。

from pyjavaproperties import Properties
p = Properties()
p.load(open('test.properties'))
p.list()
print p
print p.items()
print p['name3']
0
Andy Quiroz

次の関数を使用できます。これは、@ mvallebrの修正コードです。プロパティファイルのコメントを尊重し、空の改行を無視し、単一のキー値を取得できます。

def getProperties(propertiesFile ="/home/memin/.config/customMemin/conf.properties", key=''):
    """
    Reads a .properties file and returns the key value pairs as dictionary.
    if key value is specified, then it will return its value alone.
    """
    with open(propertiesFile) as f:
        l = [line.strip().split("=") for line in f.readlines() if not line.startswith('#') and line.strip()]
        d = {key.strip(): value.strip() for key, value in l}

        if key:
            return d[key]
        else:
            return d
0
Memin

私はこれを使用しました、このライブラリは非常に便利です

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'
0
Andy Quiroz

次のようにConfigParserを使用してこれを行いました。コードは、BaseTestが配置されているのと同じディレクトリにconfig.propというファイルがあることを前提としています。

config.prop

[CredentialSection]
app.name=MyAppName

BaseTest.py:

import unittest
import ConfigParser

class BaseTest(unittest.TestCase):
    def setUp(self):
        __SECTION = 'CredentialSection'
        config = ConfigParser.ConfigParser()
        config.readfp(open('config.prop'))
        self.__app_name = config.get(__SECTION, 'app.name')

    def test1(self):
        print self.__app_name % This should print: MyAppName
0
narko

これは、ファイルを解析するために書いたものであり、コメントをスキップし、非キー値行がhg:dを指定するスイッチを追加する環境変数として設定しました

  • -hまたは--help使用法の要約を出力
  • -cコメントを識別する文字を指定します
  • -s propファイルのキーと値の間の区切り文字
  • 解析する必要があるプロパティファイルを指定します。例:python EnvParamSet.py -c#-s = env.properties

    import pipes
    import sys , getopt
    import os.path
    
    class Parsing :
    
            def __init__(self , seprator , commentChar , propFile):
            self.seprator = seprator
            self.commentChar = commentChar
            self.propFile  = propFile
    
        def  parseProp(self):
            prop = open(self.propFile,'rU')
            for line in prop :
                if line.startswith(self.commentChar)==False and  line.find(self.seprator) != -1  :
                    keyValue = line.split(self.seprator)
                    key =  keyValue[0].strip() 
                    value = keyValue[1].strip() 
                            print("export  %s=%s" % (str (key),pipes.quote(str(value))))
    
    
    
    
    class EnvParamSet:
    
        def main (argv):
    
            seprator = '='
            comment =  '#'
    
            if len(argv)  is 0:
                print "Please Specify properties file to be parsed "
                sys.exit()
            propFile=argv[-1] 
    
    
            try :
                opts, args = getopt.getopt(argv, "hs:c:f:", ["help", "seprator=","comment=", "file="])
            except getopt.GetoptError,e:
                print str(e)
                print " possible  arguments  -s <key value sperator > -c < comment char >    <file> \n  Try -h or --help "
                sys.exit(2)
    
    
            if os.path.isfile(args[0])==False:
                print "File doesnt exist "
                sys.exit()
    
    
            for opt , arg  in opts :
                if opt in ("-h" , "--help"):
                    print " hg:d  \n -h or --help print usage summary \n -c Specify char that idetifes comment  \n -s Sperator between key and value in prop file \n  specify file  "
                    sys.exit()
                Elif opt in ("-s" , "--seprator"):
                    seprator = arg 
                Elif opt in ("-c"  , "--comment"):
                    comment  = arg
    
            p = Parsing( seprator, comment , propFile)
            p.parseProp()
    
        if __== "__main__":
                main(sys.argv[1:])
    
0
patel

私はconfigparserアプローチに従いましたが、私にとっては非常にうまくいきました。 1つのPropertyReaderファイルを作成し、構成パーサーを使用して、各セクションに対応するプロパティを準備しました。

**使用済みPython 2.7

PropertyReader.pyファイルの内容:

#!/usr/bin/python
import ConfigParser

class PropertyReader:

def readProperty(self, strSection, strKey):
    config = ConfigParser.RawConfigParser()
    config.read('ConfigFile.properties')
    strValue = config.get(strSection,strKey);
    print "Value captured for "+strKey+" :"+strValue
    return strValue

読み取りスキーマファイルの内容:

from PropertyReader import *

class ReadSchema:

print PropertyReader().readProperty('source1_section','source_name1')
print PropertyReader().readProperty('source2_section','sn2_sc1_tb')

.propertiesファイルの内容:

[source1_section]
source_name1:module1
sn1_schema:schema1,schema2,schema3
sn1_sc1_tb:employee,department,location
sn1_sc2_tb:student,college,country

[source2_section]
source_name1:module2
sn2_schema:schema4,schema5,schema6
sn2_sc1_tb:employee,department,location
sn2_sc2_tb:student,college,country
0
Vaibhav Shukla