Convert json array data to csv.
Project description
Convert json data to csv data.
Install
pip install zencore-json2csv
Usage
E:\>json2csv --help Usage: json2csv [OPTIONS] Options: -f, --file FILENAME Input file name, use - for stdin. --file-encoding TEXT Input file encoding. -o, --output FILENAME Output file name, use - for stdout. --output-encoding TEXT Output file encoding. -k, --keys TEXT Output field names. Comma separated string list. -p, --path TEXT Path of the data. --help Show this message and exit.
Example 1
INPUT:
[ [1,2,3], [2,3,4] ]
OUTPUT:
1,2,3 2,3,4
COMMAND:
cat input.txt | json2csv -o output.txt
Example 2
INPUT:
[ {"f1": 11, "f2": 12, "f3": 13}, {"f1": 21, "f3": 23, "f2": 22} ]
OUTPUT:
11,12,13 21,22,23
COMMAND:
cat input.txt | json2csv -o output.txt -k f1,f2,f3
Example 3
INPUT:
{ "data": { "list": [ [1,2,3], [2,3,4], ] } }
OUTPUT:
1,2,3 2,3,4
COMMAND:
cat input.txt | json2csv -o output.txt -p data.list
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file zencore-json2csv-0.1.0.tar.gz
.
File metadata
- Download URL: zencore-json2csv-0.1.0.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ad05bb4fa56062c1d1814ccba75eaae0c2e49e39b4cee37116f1953c2c4e39b |
|
MD5 | b338c5301d4702c1e47d2c5d4c14f5fd |
|
BLAKE2b-256 | dcf8c9eab199639bcf5e43c7d5e74f44462ae53b0c5da6de7cb54aaf9b1eaa2c |