Metadata-Version: 2.1
Name: jwrap
Version: 0.3
Summary: Wrapper for easy interacting with JSON files.
Home-page: https://gitea.gch.icu/gd/jwrap/
Author: gd
Author-email: gechandev@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: The Unlicense (Unlicense)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# 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)
```

## Quickstart

For example, you can write some data to json file by this:

```python
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
```

