I have a 2GB .csv file containing json in this format: {key1: value1, key2: value2, key3: value3}
I need to extract the value1 from this file.
I want to understand if there's a best to do that in MacOS. Maybe using docker to build a SQLlite or PostGres and then use somekind of json_extract_path function. I've tried using pandas but it was't good and the notebook died.
Anybody has a best practice/way to use in this case by using SQL or Python?