pandas read_json orient records code example
Example 1: read json pandas
df = pd.read_json('data.json')
Example 2: pd.read_json('data.json') args
import json
import pandas as pd
with open('C:/Users/Alberto/nutrients.json', 'r') as f:
data = json.load(f)
df = pd.DataFrame(data)