The output of historical data using the Python Yahoo-Finance API is structured as follows:
{u'Adj_Close': u'63.209999',
u'Close': u'63.209999',
u'Date': u'2015-08-27',
u'High': u'63.259998',
u'Low': u'61.080002',
u'Open': u'61.459999',
u'Symbol': u'CAM',
u'Volume': u'22808600'}
What's the best way to handle this data? For example, how can I access the Close price of 63.209999? Should I use a regex?