I have the following Unicode string:
{u'prices': [{u'ask': 1.05321, u'instrument': u'EUR_USD', u'bid': 1.05308, u'time': u'2016-12-30T02:53:26.928268Z'}]}
and would like to convert it to a Dataframe with this structure:
ask 1.05321
instrument EUR_USD
bid 1.05308
time 2016-12-30T02:53:26.928268Z
thanks in advance.
If you mean pandas data frame:
Or use
json_normalize
: