You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
.gitignore | 2 years ago | |
LICENSE | 2 years ago | |
README.md | 2 years ago | |
jwrap.py | 2 years ago | |
setup.py | 2 years ago |
README.md
jwrap
jwrap — is a single-file micro-library that implements JSON wrapper. Its mission is to make interacting with JSON a little bit easier without writing extra code.
More information is available in docstrings:
>>> import jwrap
>>> help(jwrap)
Installation
pip install jwrap
Quickstart
For example, you can write some data to json file by this:
from jwrap import Jwrap
j = Jwrap('myfile.json')
j.json()['mykey'] = 'my value'
# or j.ins('mykey', 'my value')
j.commit() # write data to file