溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

目前 pandas_datareader 提示yahoo 無(wú)法下載數(shù)據(jù)的解決方法

發(fā)布時(shí)間:2020-08-02 21:02:20 來(lái)源:網(wǎng)絡(luò) 閱讀:7280 作者:51asdisk 欄目:網(wǎng)絡(luò)安全

pandas_datareader._utils.RemoteDataError: Unable to read URL: http://ichart.finance.yahoo.com/table.csv?f=2017&ignore=.csv&b=31&c=2016&g=d&a=11&d=4&s=INPX&e=16

提示無(wú)法下載yahoo 數(shù)據(jù),翻了半天資料,在github上找到了答案。目前0.4.1 沒(méi)有發(fā)布,可以通過(guò)以下方法臨時(shí)解決。

詳見(jiàn)https://github.com/pydata/pandas-datareader/issues/315

這里摘錄解決方法

For a temporary fix (until this PR gets merged), try:

$ git clone https://github.com/rgkimball/pandas-datareader
$ cd pandas-datareader
$ git checkout fix-yahoo
$ pip install -e .

On Python:

import pandas_datareader as pdrprint(pdr.__version__)  # Make sure it is '0.4.1'.


在運(yùn)行

import pandas_datareader as pdr
pdr.get_data_yahoo('AAPL')

結(jié)果就能成功下載數(shù)據(jù)

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI