Metadata-Version: 2.1
Name: json-parser
Version: 1.1.0
Summary: A JSON parser written in Python.
Home-page: https://github.com/tusharsadhwani/json_parser
Author: Tushar Sadhwani
Author-email: tushar.sadhwani000@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pytest

# json_parser

An _efficient_ JSON parser written in Python.

## Installation

Install it via pip:

```console
pip install json-parser
```

## Usage

```py
import json_parser

data = json_parser.parse('{"value": 42}')
print(data['value']) # 42
```

## Testing

Clone the app and run the following:

```console
pip install -e .
pytest
```


