Metadata-Version: 2.0
Name: pycsvjson
Version: 0.0.2
Summary: A utility to transform CSV files into structured JSON
Home-page: https://github.com/nicholastulach/pycsvjson
Author: Tembo Inc.
Author-email: devsupport@temboinc.com
License: MIT License
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Dist: boltons
Requires-Dist: jsonmapping (>=0.7.4)
Requires-Dist: pip (>=9.0.0)
Requires-Dist: tqdm
Requires-Dist: ujson

pycsvjson
=========
A command-line utility to convert CSV files to JSON.

Installation
------------
**Requires:** Python 3

You should really consider using virtual environments when installing any Python software. See http://docs.python-guide.org/en/latest/dev/virtualenvs/#virtualenvironments-ref for more information on virtual environments.

To use virtual environments with pycsvjson, do something like:

```
pip install virtualenv
virtualenv -p $(which python3) .ve
source .ve/bin/activate
```

To install this package:
`pip install pycsvjson`

Quickstart
----------
`pycsvjson csvfile mappingfile --output outfile`

For pretty, human-readable versions of JSON, use the `--pretty` option:

`pycsvjson file.csv mapping.json --output outfile.json --pretty`

For extended options: `pycsvjson --help`

For more information on what a mapping file is, see https://github.com/pudo/jsonmapping

Status
------
This software should be considered Alpha.

License
-------
This project is released under the MIT License.


