Metadata-Version: 1.1
Name: pyjavaprops
Version: 0.1.3
Summary: Tool parse Java style properties file
Home-page: https://github.com/luiscberrocal/pyjavaprops
Author: Luis Carlos Berrocal
Author-email: luis.berrocal.1942@gmail.com
License: MIT
Download-URL: https://github.com/luiscberrocal/pyjavaprops/archive/v0.1.3.zip
Description: # pyjavaprops
        
        Library to read Java style properties files. I don't particularly like properties files but working with them in Java
        is very easy. I recently had to support reading properties files using Python.
        
        This project is based on Benjamins Brent fork of pyjavaproperties https://bitbucket.org/benjaminbrent/pyjavaproperties-python3
        
        ## Installation
        
        Requires Python3. 
        
            $ pip install pyjavaprops
            
        # Usage
        
            filename = os.path.join(TEST_DATA_FOLDER, 'complex.properties')
            java_properties = JavaProperties()
            java_properties.load(open(filename))
            
            print(java_properties['Key14'])
        
        ## Development
        
        To create the virtual environment
        
            $ cd ~/virtual_environments
        
            $ python3 /usr/local/lib/python3.4/site-packages/virtualenv.py --no-site-packages pyjavaprops_env
        
            $ source ./pyjavaprops_env/bin/activate
        
            (pyjavaprops_env) $
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.4
