Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 769 Bytes

remote_data.rst

File metadata and controls

30 lines (19 loc) · 769 Bytes
.. currentmodule:: pandas

Remote Data Access

DataReader

The sub-package pandas.io.data was deprecated in v.0.17 and removed in v.0.19. Instead there has been created a separately installable pandas-datareader package. This will allow the data modules to be independently updated on your pandas installation.

For code older than < 0.19 you should replace the imports of the following:

from pandas.io import data, wb

With:

from pandas_datareader import data, wb