Convert json array data to csv.
Project description
python-json2csv
Convert json array data to csv.
Note: zencore-json2csv rename to python-json2csv
Install
pip install python-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.
Examples
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
Releases
v0.2.0 2019-11-05
- Rename from zencore-json2csv to python-json2csv.
- Fix console application install method in setup.py.
v0.1.1 2018-02-27
- Simple json2csv console utils released.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
python-json2csv-0.2.0.tar.gz
(2.7 kB
view details)
File details
Details for the file python-json2csv-0.2.0.tar.gz
.
File metadata
- Download URL: python-json2csv-0.2.0.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16c16b876eb4adc547183c664b3635b9b8bd8fef2f8f27bca1d82d2ae8e489f6 |
|
MD5 | 8ba281f9c0cc1824e6efbc991fe4794d |
|
BLAKE2b-256 | 967180d02aafcb99e20ffafcafd63714cc72164dd8c78b4140dce0d569047329 |