mirror of
https://github.com/VERT-sh/VERT.git
synced 2026-04-13 15:10:43 -05:00
JSON to CSV converter (and vice-versa) #40
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sfiedler0 on GitHub.
First of all, thank you so much for a great file converter that just works! Instantly bookmarked it.
I think it would be even greater if it supported the conversion of JSON to CSV (similar to https://www.convertcsv.com/json-to-csv.htm). This conversion can be important for people who want to process data from websites (commonly JSON) in some spreadsheet program (often CSV).
Converting from CSV to JSON is important too, as you may want, for example, to get your spreadsheet data from your website (but don't want to parse CSV).
@alvinliju commented on GitHub:
is json to csv supported?
i am seeing this error:
"Error converting file calligra.json: .csv is not a supported output format for documents." and also it gives me a "pandoc-api error" when i try to convert csv to any other format.
is this an issue from my side?
@sfiedler0 commented on GitHub:
No, this isn't an issue on your side. The problem is that VERT.sh uses pandoc for document conversion, but pandoc is designed for rich text documents (but they still say it supports json and csv).
So Pandoc can't convert json to csv. And this is why I filed this issue.
@sfiedler0 commented on GitHub:
Actually true. Will update the issue title.
@theg1239 commented on GitHub:
I assume it would be good to have a vice-versa version as well right? CSV to JSON?