Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
donuts238487y@magicMirror oh I forgot that... Now I need to remember Python again...
Does it automatically convert like
[{a:1, b: 2}, {c:3, d:4}] to
a,b,c,d
1,2,,
,,3,4
? -
@billgates dunno. but should be easy enough to code whatever you want it to do.
-
donuts238487y@magicMirror yea.... But that's sorta the question... Do I even need to code anything.
-
donuts238487y@bkwilliams yea gotta decide.... Sorta feels algo-y actually... There's a DFS/BFS somewhere I think...
Today I was looking for a JSON to CSV flattener app.
I need one for work that doesn't send the data to a server... (I actually got in a bit of trouble using an online prettifier which apparently sends it to the server to format...)
But couldn't find one. Now I could code own... But wanted to ask first to myself the trouble.
I found a few but they were huge apps 40mb+)... and trials.
There was also a JS one but don't work well was the data isn't rectangular (objects have different properties)
question