Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 683 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 683 Bytes

Python 3 JsonParser

VFX Pipeline python v3.6 pylint Score

GitHub: https://github.com/tmdag/jsonParser

Overview

A wrapper on top of original python json module.

Installation:

pip install git+https://github.com/tmdag/jsonParser

Usage:

from jsonParser import JsonFile
my_json = JsonFile("some/json_file.json").load()
print(my_json)

data = {}
data['info'] = {}
data['info']['year'] = 2018

JsonFile("some/json_file.json").save(data)