You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/usr/local/lib/python3.10/dist-packages/pandas_datareader/data.py in DataReader(name, data_source, start, end, retry_count, pause, session, api_key)
365 if data_source not in expected_source:
366 msg = "data_source=%r is not implemented" % data_source
--> 367 raise NotImplementedError(msg)
368
369 if data_source == "yahoo":
NotImplementedError: data_source='AAP' is not implemented
CODE
import pandas_datareader.data as web
pan = web.DataReader(tickers, "AAP", datetime.datetime(2015, 1, 1), datetime.datetime(2017, 1, 1))
The text was updated successfully, but these errors were encountered:
Problem Description
/usr/local/lib/python3.10/dist-packages/pandas_datareader/data.py in DataReader(name, data_source, start, end, retry_count, pause, session, api_key)
365 if data_source not in expected_source:
366 msg = "data_source=%r is not implemented" % data_source
--> 367 raise NotImplementedError(msg)
368
369 if data_source == "yahoo":
NotImplementedError: data_source='AAP' is not implemented
CODE
import pandas_datareader.data as web
pan = web.DataReader(tickers, "AAP", datetime.datetime(2015, 1, 1), datetime.datetime(2017, 1, 1))
The text was updated successfully, but these errors were encountered: