我猜这个问题最近才出现。在我的常规PC上,我有一个较旧版本的pandas_datareader
可以正常工作,但在我的实例中,我必须安装较新版本,但它不起作用。它有以下错误 -
Yahoo Daily 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.
我可以以某种方式安装早期版本吗?如何使用以下代码解决此问题?
import pandas_datareader as web
import datetime
co = web.DataReader("AAPL", "yahoo", datetime.date.today() - datetime.timedelta(days=10), datetime.date.today())
print co.head()
答案 0 :(得分:2)
我写了package来阅读新的api https://query1.finance.yahoo.com
Set
答案 1 :(得分:0)
只需转到pandas_datareader的PyPi,下载tar.gz文件(wget <url to tar.gz file for 0.5.0>
)并输入pip install blahblah.tar.gz
。