JSON for Humans, allows comments and is less error prone.
Project description
hjson-py
Hjson, the Human JSON. A configuration file format for humans. Relaxed syntax, fewer mistakes, more comments.
Hjson works with Python 2.5+ and Python 3.3+ (based on simplejson)
Installation
pip install hjson
or download from https://pypi.python.org/pypi/hjson
Usage
import hjson
Decoding Hjson
text = """{
foo: a
bar: 1
}"""
hjson.loads(text)
Result:
OrderedDict([('foo', 'a'), ('bar', 1)])
Encoding Python object hierarchies
hjson.dumps({'foo': 'text', 'bar': (1, 2)})
Result:
{
foo: text
bar:
[
1
2
]
}
Encoding as JSON
Note that this is probably not as performant as the simplejson version.
hjson.dumpsJSON(['foo', {'bar': ('baz', None, 1.0, 2)}])
Result: '["foo", {"bar": ["baz", null, 1.0, 2]}]'
From the Commandline
Use hjson.tool to validate and convert.
python -m hjson.tool [FORMAT] [INFILE [OUTFILE]]
Formats:
-h: print Hjson
-j: print formatted JSON
-c: print compact JSON
E.g. echo '{"json":"obj"}' | python -m hjson.tool
API
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file hjson-1.5.5.zip.
File metadata
- Download URL: hjson-1.5.5.zip
- Upload date:
- Size: 56.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58ad88933b9f779d7b32092c853d5e783ab42de1994f2d49f35ffb28b8ed2833
|
|
| MD5 |
ac71799a7f2537b173cf958c0562d3b7
|
|
| BLAKE2b-256 |
65b086e0ff593519c01239b3721ac80e2399253940881f4246f12ac14337a0dc
|