Liste JSON à DataFrame Python

import pandas as pd

json_list = [{},{},{}]

df = pd.DataFrame.from_records(json_list)
AMi