blob: e52a596aba3e338b48712bb481e4a7f0f5429777 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
Extract financial data from a wide range of Internet sources into a Pandas
DataFrame. This was previously found in Pandas (https://pandas.pydata.org) in
pandas.io.data and pandas.io.wb.
Where you previously used
from pandas.io import data, wb
Now you should use
from pandas_datareader import data, wb
|