Folks,
I have a huge Python list which I created from a MongoDB query, it looks like this:
documents[0]['person']
Output:
{'phone': '3368988989898989898',
'name': 'PABLO',
'age': 27}
I wish to create a dataframe that looks like a traditional database:
PHONE | NAME | AGE
336...| PABLO| 27
335...| PEDRO| 32
How can I convert this list to a Pandas dataframe so I can write it to my relational database?