How can I download stock price data with Python?
问题 I have installed pandas-daatreader but both the Google and Yahoo APIs for downloading historical stock price data have been deprecated. import pandas_datareader.data as web start_date = '2018-01-01' end_date = '2018-06-08' panel_data = web.DataReader('SPY', 'yahoo', start_date, end_date) ImmediateDeprecationError: Yahoo Daily has been immediately deprecated due to large breaks in the API without the introduction of a stable replacement. Pull Requests to re-enable these data connectors are