The following is the json data available to me
{
"status": "success",
"message": "Transactions Details",
"TxnArray": [
{
"transactionAmount": {"0": 3500},
"createdAt": {"0": "17/04/2020"}
},
{
"transactionAmount": {"1": 4500},
"createdAt": {"1": "19/04/2020"}
}
]
}
Want to convert the above data in pandas Dataframe like
transactionAmount createdAt
0 3500 17/4/2020
1 4500 19/4/2020

