An open API service indexing awesome lists of open source software.

https://github.com/michael-valdron/json2csv-cli

Demo Python console application for parsing records of a particular scheme in JSON files to CSV files.
https://github.com/michael-valdron/json2csv-cli

csv-parser json-parser python

Last synced: about 2 months ago
JSON representation

Demo Python console application for parsing records of a particular scheme in JSON files to CSV files.

Awesome Lists containing this project

README

        

# JSON to CSV Parsing Demo - CLI

Demo Python console application for parsing records of a particular scheme in
JSON files to CSV files.

## Requirements

- Python 3.8

## Usage

To run the application, use the follow form in the shell:

```
python main.py .json .csv
```

### Example

```shell
python main.py test_main_1.json main_out.csv
```

### Testing

For testing one can run the testsuites by doing the following:

```shell
python -m unittest
```