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.
- Host: GitHub
- URL: https://github.com/michael-valdron/json2csv-cli
- Owner: michael-valdron
- License: mit
- Created: 2021-10-27T18:44:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-20T02:43:10.000Z (almost 3 years ago)
- Last Synced: 2025-01-30T18:39:29.806Z (4 months ago)
- Topics: csv-parser, json-parser, python
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```