Metadata-Version: 2.1
Name: jsoncparser
Version: 1.0.4
Summary: A Python package to enable reading/writing of json files with comments
Home-page: https://github.com/jfcarter2358/jsonc
Author: John Carter
Author-email: jfcarter2358@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# JSONC

## Install

```
pip install jsoncparser
```

## Getting Started

To use JSONC, add the following import statement to your code

```python
import jsonc
```

You can then use the four functions below to interact with your jsonc file and data

```
jsonc.load(file)
jsonc.loads(str)
jsonc.dumps(JSONCDict)
jsonc.dump(JSONCDict, file)
```

In addition, you can access the dictionary _with_ stored comments by using

```
data_dict = JSONCDict()
data_dict.with_comments
```



