json-to-csv icon indicating copy to clipboard operation
json-to-csv copied to clipboard

Nested JSON to CSV Converter

Results 14 json-to-csv issues
Sort by recently updated
recently updated
newest added

Share an example of the path and how to use it

added an option to only add selected fields to the csv files by specifying fields after the path arguments `python json_to_csv.py `

but i don't know how do i do it can i help me? a = { "medications":[{ "aceInhibitors":[{ "name":"lisinopril", "strength":"10 mg Tab", "dose":"1 tab", "route":"PO", "sig":"daily", "pillCount":"#90", "refills":"Refill 3" }],...

Hi there. I am suggesting to add a sheebang to be able to call the function easily from the terminal `#!/usr/bin/env python` Also, I think the 'node' option is not...

https://superuser.com/questions/1412477/how-can-i-view-my-instagram-backup-data-in-a-friendly-way

A combined alphabetical and numerical approach with an answer found on stackoverflow. See #26 for issue.

Changing the delimiter to semicolon and removing quotation marks will help to open the csv file in excel. Can you please add an option for that? Also in comment would...

enhancement

Current the header sorts alphabetically and only takes into account the first digit e.g. header_0, header_1, header_10, header_11, header_2, header_3 .... A solution has been found and applied using the...

In Python3 there is a know issue when writing line with csv lib. https://stackoverflow.com/questions/3348460/csv-file-written-with-python-has-blank-lines-between-each-row I added newline ='' to the file open function to solve this. Line 92 open(csv_file_path, 'w+',newline...

information