Metadata-Version: 2.1
Name: json2
Version: 0.7.1
Summary: Add convenience function to pythons default json implementation
Home-page: https://github.com/ThoenigAdrian/json2
Author: Adrian Thoenig
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.5
Description-Content-Type: text/markdown
License-File: LICENSE

# Json2

## Purpose
Python package which just wraps the default python json but with.
Additonally it can hanlde numpy arrays and torch tensors without throwing an exception.
```json2.load_file``` and ```json2.save_file```

## Installation

```pip install json2```

## Usage

```
import json2

a = json2.load_file(r'/home/user/myjson.json')
json2.dump_file(r'/home/user/myjson.json', a)
```
