convert json perline to panads data frame
Sometimes we have a file that contains a json object per line. For example log file in json format
if we want to read this in python pandas we need to convert it to
easy way to do this is with jq --slurp
then you can read it in python pandas (notebook) like this
Last updated