-
How can I convert csv file to json array ? For example if I convert this csv:
using {
"name": "Tom"
}
{
"name": "James"
} How can I get: [
{
"name": "Tom"
},
{
"name": "James"
}
] |
Beta Was this translation helpful? Give feedback.
Answered by
kpym
Dec 5, 2021
Replies: 1 comment
-
I think I now how to do it now: by using |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
TomWright
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think I now how to do it now: by using
--merge-input-documents
. Sorry for asking before reading the doc.