I have a JSON object that looks like this. This is coming from the stock market as a JSON.
{
"Meta Data": {
"1. Information": "Daily Time Series with Splits and Dividend Events",
"2. Symbol": "NSE:20MICRONS",
"3. Last Refreshed": "2019-12-20",
"4. Output Size": "Full size",
"5. Time Zone": "US/Eastern"
},
"Time Series (Daily)": {
"2019-12-20": {
"1. open": "33.5000",
"2. high": "33.5000",
"3. low": "32.4000",
"4. close": "32.4500",
"5. adjusted close": "32.4500",
"6. volume": "12737",
"7. dividend amount": "0.0000",
"8. split coefficient": "1.0000"
},
"2019-12-19": {
"1. open": "32.0000",
"2. high": "32.6500",
"3. low": "31.7500",
"4. close": "32.3000",
"5. adjusted close": "32.3000",
"6. volume": "13320",
"7. dividend amount": "0.0000",
"8. split coefficient": "1.0000"
}
}
}
I want to create a dataframe of the following format
Is there an easy way to do this?