This python package allows extracting stock market data from multiple sources such as IEXCloud, Alpha Vantage Yahoo! Finance and other custom sources which can be defined in the configuration.
The Ticker
module enables extracting market data using the data source of your choice.
from marketdata import Ticker
aapl = Ticker('AAPL', 'IEXCloud')
summary = aapl.get_summary()