Skip to content

Commit 61e313f

Browse files
committed
DOC add a small comment about future import usage
link to the documentation page
1 parent 8a5a55b commit 61e313f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,15 @@ Install via pip
2121
Usage
2222
-----
2323

24-
Rather than import from ``pandas.io`` you should import from ``pandas-datareader``:
24+
*In future pandas releases (0.17+) pandas-datareader will become a dependancy and using* ``pandas.io.data``
25+
*will be equivalent to using* ``pandas_datareader.data``.
26+
27+
For now, you must replace your imports from ``pandas.io`` with ``pandas_datareader``:
2528

2629
.. code-block:: python
2730
2831
from pandas.io import data, wb # becomes
2932
from pandas_datareader import data, wb
33+
34+
35+
See the `pandas-datareader documentation <http://pandas-datareader.readthedocs.org/>`_ for more details.

0 commit comments

Comments
 (0)