Tim232 / hJson

A package for handling json files

Home Page:https://pypi.org/project/py-hJson

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hJson

A package for handling json files

pip install py-hJson

Example :

import hJson

data = hJson.load('example.json')
print(data)
print()

data['test'] = 100
data = hJson.save('example.json', data)
print(data)
print()

check = hJson.check('example.json')
print(check)

Output :

{
    'test' : 0
}

{
    'test' : 100
}

True

About

A package for handling json files

https://pypi.org/project/py-hJson

License:GNU General Public License v3.0


Languages

Language:Python 100.0%