Wrapper for easy interacting with JSON files.
Go to file
gd 1b566907e0 Update README.md 2021-03-09 02:42:56 +03:00
.gitignore init 2021-03-08 07:11:45 +03:00
LICENSE init 2021-03-08 07:11:45 +03:00
README.md Update README.md 2021-03-09 02:42:56 +03:00
jwrap.py init 2021-03-08 07:11:45 +03:00
setup.py init 2021-03-08 07:11:45 +03:00

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