I downloaded the Google Finance and was wondering how I could extract specific values versus all of them. This is the example given:
>>> from googlefinance import getQuotes
>>> print json.dumps(getQuotes('AAPL'), indent=2)
[
{
"Index": "NASDAQ",
"LastTradeWithCurrency": "123.25",
"LastTradeDateTime": "2015-03-27T16:03:28Z",
"LastTradePrice": "123.25",
"LastTradeTime": "4:03PM EDT",
"LastTradeDateTimeLong": "Mar 27, 4:03PM EDT",
"StockSymbol": "AAPL",
"ID": "22144"
}
]
What would the
>>> print json.dumps(get(…)('AAPL'), indent=2)
call be if I just wanted to call the stock dividend for example?