Comment on Ask HN: Ideas for open source Python projects/librariesparentComments−beagle313yPandas can do most of what you want.−ig113yAny pointers ?The only way I can think would be a rather convoluted conversion to dataframe process, which would be a pain to convert back.−beagle313yIt has a python reader; then you pivot, aggregate, whatever within pandas semantics (series, dataframes, panels), and you can export it to json again.I'm reading the pandas book right now, and there's examples of all of these things. One line to read json, one line to convert back, no pain.
Comments
Pandas can do most of what you want.
Any pointers ?
The only way I can think would be a rather convoluted conversion to dataframe process, which would be a pain to convert back.
It has a python reader; then you pivot, aggregate, whatever within pandas semantics (series, dataframes, panels), and you can export it to json again.
I'm reading the pandas book right now, and there's examples of all of these things. One line to read json, one line to convert back, no pain.