======================
Some tests on reading from json into a dataframe, flattening nested json files into dataframes, and on getting specific values from deeply nested json files.
This is the result of reading the tutorial at https://towardsdatascience.com/how-to-convert-json-into-a-pandas-dataframe-100b2ae1e0d8
These simple codes use basically pandas, json and glom which can be easily installed in your venv by using, respectively:
(venv) C:> pip install pandas
(venv) C:> pip install json
(venv) C:> pip install glam
Or you can simply run the command bellow to install all dependencies:
(venv) C:> python -m pip install -r requirements.txt
or
(venv) $ python3 -m pip install -r requirements.txt