jprops
jprops copied to clipboard
Java properties file parser for Python
Results
1
jprops issues
Sort by
recently updated
recently updated
newest added
Given this small program (running on Python 2.7) using jprops 2.0.2: ``` #!/usr/bin/env python # -*- coding: utf-8 -*- import io import jprops content = {"key": 'link!'} with io.open("out.properties", mode='w')...