Parser for Java .properties files
Project description
Parser for Java .properties files.
Supports Python 2.6, 2.7, and 3.3+
Installation
Use pip to install jprops from PyPI:
pip install jprops
Usage
Reading properties
Use jprops.load_properties to read a properties file and return a normal Python dict:
import jprops with open('mine.properties') as fp: properties = jprops.load_properties(fp)
You can provide a custom “mapping” to load the properties into a different data strucuture. For example, if you would like to keep the properties in the same order they originally appeared, you can use an “ordered dict”, such as collections.OrderedDict. The “mapping” can be any type or function that accepts an iterable of (key, value) pairs:
import collections with open('mine.properties') as fp: properties = jprops.load_properties(fp, collections.OrderedDict)
load_properties is just a wrapper to iter_properties, which you can use directly if you want to process the properties lazily without loading them all into a data structure:
with open('mine.properties') as fp: for key, value in jprops.iter_properties(fp): if key.startswith('foo'): print key, value
Writing properties
Use jprops.store_properties to write a dict, dict-like object, or any iterable of (key, value) pairs to a file:
x = {'y': '1', 'z': '2'} with open('out.properties', 'w') as fp: jprops.store_properties(fp, x)
By default jprops follows the Java convention of writing a timestamp comment to the beginning of the file, like:
#Thu Oct 06 19:08:50 EDT 2011 y=1 z=2
You can suppress writing the timestamp comment by passing timestamp=False.
You can provide a custom header comment that appears before the timestamp. Multi-line comments are handled appropriately, continuing the comment across lines:
jprops.store_properties(fp, {'x': '1'}, comment='Hello\nworld!')
#Hello #world! #Thu Oct 06 19:17:21 EDT 2011 x=1
You can also use write_comment and write_property for finer-grained control over writing a properties file:
with open('out.properties', 'w') as fp: jprops.write_comment(fp, 'the hostname:') jprops.write_property(fp, 'host', 'localhost') jprops.write_comment(fp, 'the port number:') jprops.write_property(fp, 'port', '443')
#the hostname: host=localhost #the port number: port=443
File encodings and Unicode
Files opened in binary mode such as open(filename, 'rb') or open(filename, 'wb') will use the latin-1 encoding and escape unicode characters in the format \uffff for compatibility with the Java Properties byte stream encoding.
Starting with version 2.0, files opened with other text encodings are also supported:
with io.open('sample.properties', encoding='utf-8') as fp: props = jprops.load_properties(fp)
This works with the built-in open function, codecs.open, or io.open. Other file-like objects that extend io.TextIOBase or have a non-empty encoding property will be read or written as unicode text values, otherwise they will be considered binary and read or written as latin-1 encoded bytes.
Changes
2.0 (2017-04-08)
Support files opened with text encodings
Nice repr for jprops.COMMENT
1.0 (2013-06-12)
Python 3.3 support
More informative error when trying to write a non-string value
0.2 (2012-05-02)
Handle Windows or Mac line endings
0.1 (2011-10-07)
Initial release.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jprops-2.0.tar.gz
.
File metadata
- Download URL: jprops-2.0.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f30463dca91edd7b6fd37d279cc03809dd4557ba98d50f5f6635eeb46e886ead |
|
MD5 | d079e96fdc0759a49b762d1f0b0aa1eb |
|
BLAKE2b-256 | f8ca4e701a77aa1be1ed280783e9f500f333038dc395afbca053326e41386136 |
File details
Details for the file jprops-2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: jprops-2.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 014304cab8af993bc0f1295ef8fd04f5c8e4d2f84c753b1618ce68587724ee80 |
|
MD5 | 1123c1d5db1dfc137f531100aec1c627 |
|
BLAKE2b-256 | d12dd450a89ed426db031aeeb1c227bf14dc090bd2e060522477a9b4edc9e1ae |
Comments
By default, comments in the input will be ignored, but they can be included by iter_properties by passing comments=True. The comments will be included with jprops.COMMENT as a sentinal value in place of the key:
jprops doesn’t include any special data structures for preserving comments, but you can manipulate the properties before writing them back out. For example this is one simple pattern for altering properties while writing the ouput: