commentjson 0.9.0
pip install commentjson
Latest version
Released:
Add Python and JavaScript style comments in your JSON files.
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- Author: Vaidik Kapoor
Classifiers
- Programming Language
Project description
commentjson (Comment JSON) is a Python package that helps you create JSON files with Python and JavaScript style inline comments. Its API is very similar to the Python standard library’s json module.
Installation
pip install commentjson
Basic Usage
>>> import commentjson
>>>
>>> json_string = """{
... "name": "Vaidik Kapoor", # Person's name
... "location": "Delhi, India", // Person's location
...
... # Section contains info about
... // person's appearance
... "appearance": {
... "hair_color": "black",
... "eyes_color": "black",
... "height": "6"
... }
... }"""
>>>
>>> json_loaded = commentjson.loads(json_string)
>>> print json_loaded
{u'appearance': {u'eyes_color': u'black', u'hair_color': u'black', u'height': u'6'}, u'name': u'Vaidik Kapoor', u'location': u'Delhi, India'}
Documentation
Complete documentation can be found here.
Tests
python setup.py test
License
See license.
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- Author: Vaidik Kapoor
Classifiers
- Programming Language
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 commentjson-0.9.0.tar.gz
.
File metadata
- Download URL: commentjson-0.9.0.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42f9f231d97d93aff3286a4dc0de39bfd91ae823d1d9eba9fa901fe0c7113dd4 |
|
MD5 | fbf45508da35e42f0055b7c4f02d703c |
|
BLAKE2b-256 | c076c4aa9e408dbacee3f4de8e6c5417e5f55de7e62fb5a50300e1233a2c9cb5 |