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.1 2022-01-10
- Fix license file missing problem.
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
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zencore-json2csv-0.2.1.tar.gz.
File metadata
- Download URL: zencore-json2csv-0.2.1.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3308e91ae42fd432bde21a9ec955261b2811f62af6e03b47f58d0e38c85918f
|
|
| MD5 |
f0865d617d4f85d8075456200f1a745d
|
|
| BLAKE2b-256 |
6023df49c6fbdd3dad7af9025de1bf4217fff1bebc2aee76150fdd3a2419f607
|
File details
Details for the file zencore_json2csv-0.2.1-py3-none-any.whl.
File metadata
- Download URL: zencore_json2csv-0.2.1-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70a4e75b86092df7286e54f0ffb6b4fa79ee6c586ae1b774ca9f837e1e5eb755
|
|
| MD5 |
958780a669e734394466ea7179b3afcc
|
|
| BLAKE2b-256 |
b54f17863d152de1e311870bda03d251f4af50d090e4f797bdc7cc1930aecf83
|