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
ImmediateDeprecationError Traceback (most recent call last)
<ipython-input-3-3d15747a3d26> in <module>()
2 from pandas_datareader import data
3
----> 4 df = data.get_data_yahoo("SPY")
5 df['return'] = df['Adj Close'].pct_change().fillna(0)
~/anaconda3/lib/python3.6/site-packages/pandas_datareader/data.py in get_data_yahoo(*args, **kwargs)
61
62 def get_data_yahoo(*args, **kwargs):
---> 63 raise ImmediateDeprecationError(DEP_ERROR_MSG.format('Yahoo Actions'))
64 return YahooDailyReader(*args, **kwargs).read()
65
ImmediateDeprecationError:
Yahoo Actions 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 welcome.
The text was updated successfully, but these errors were encountered:
Hi
the readme example fails with:
The solution is to use
However we then run into:
The text was updated successfully, but these errors were encountered: