I'm looking to get stock quotes from the oslo stock exchange, but the known modules like google finance (which only covers NYSE and NASDAQ according to its project page) and yahoo-finance does not provide this functionality. I though that yahoo-finance would, but clearly it does not even though its available on the yahoo finance website.
For example:
>>> import yahoo_finance
>>> yahoo = yahoo_finance.Share('NAS')
>>> print yahoo.get_price()
None
This works if I change the stock quote to a stock on the NASDAQ or NYSE stock exchange. I dont however see any mention about not supporting other stock exchanges on the yahoo-finance project website.
After searching a bit on google I did not find any other python module that provides this functionality.
Does someone know about any python module that provides stock quote data for the european stock exchanges ? Specifically the oslo stock exchange.. They dont seem to have any official rest apis or similar either.