RJT1990 / Active-Portfolio-Management-Notes

Notes for Active Portfolio Management, by Grinold and Kahn
45 stars 21 forks source link

DataReader #1

Open femtotrader opened 8 years ago

femtotrader commented 8 years ago

Hello,

I noticed you are using

from pandas.io.data import DataReader

you might use https://github.com/pydata/pandas-datareader

see https://github.com/pydata/pandas/blob/master/pandas/io/data.py

The pandas.io.data module is moved to a separate package
(pandas-datareader). After installing the pandas-datareader package
(https://github.com/pydata/pandas-datareader), you can change
the import ``from pandas.io import data, wb`` to
``from pandas_datareader import data, wb``.

Kind regards

RJT1990 commented 8 years ago

Thanks - was aware of this change but haven't got in the habit of using the new package, so will do so in future!