Python module to get stock data from the Investors Exchange (IEX) Developer API platform. iexfinance provides real-time financial data from the various IEX Stock endpoints.
From PyPI with pip (latest stable release):
$ pip3 install iexfinance
From development repository (dev version):
$ git clone https://github.com/addisonlynch/iexfinance.git
$ cd iexfinance
$ python3 setup.py install
>>> from iexfinance import Share
>>> tsla = Share('TSLA')
>>> print(tsla.get_open())
'299.64'
>>> print(tsla.get_price())
'301.84'
Email: ahlshop@gmail.com
Twitter: alynchfc
Copyright © 2017 Addison Lynch
See LICENSE for details