The jcson python module is an enhanced json parser, that supports:
- path expression subtitutions, with fallback to environment variables.
- include directive
- new line and inline comments
Substitutions are a way of referring to other parts of the configuration tree.
The syntax is
An include directive consists of the unquoted string include followed by quoted filename.
include "include.jcson"
Install and update using pip:
pip install -U jcson
Sample config file simple.jcson:
{
"foo" : {
"bar": "some value"
},
"bar_value": "${foo.bar}",
"concatenated": "${foo.bar} used later"
}
Pyhton code that reads it:
import json
import jcson
c = jcson.read('simple.jcson')
print (json.dumps(c, indent=4))
Output:
{
"foo" : {
"bar": "some value"
},
"bar_value": "some value",
"concatenated": "some value used later"
}