Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
bumper_crop
on May 3, 2022
|
parent
|
context
|
favorite
| on:
Why isn’t there a decent file format for tabular d...
This table has one column, one row, and thus one cell. What is its value?
[{"col1":"val1", "col1":"val2"}]
noitpmeder
on May 4, 2022
[–]
If you're really trying to replace csv with json, it would probably look like
["header1", "header2"] ["val1", "val2"] ...
The entire file isn't valid JSON, but if you load each line independent of the next (jsonl), then you're fine.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
[{"col1":"val1", "col1":"val2"}]