Temporary fix for Pandas Datareader's get_data_yahoo()
Project description
Yahoo! Finance Fix for Pandas Datareader
fix-yahoo-finance offers a temporary fix to the problem by using Selenium to scrape the data from Yahoo! finance and return a Pandas DataFrame/Panel in the same format as the original get_data_yahoo() method.
Yahoo! finance has decommissioned their historical data API, causing many programs that relied on the get_data_yahoo() to stop working.
By basically “hijacking” pandas_datareader.data.get_data_yahoo() method, fix-yahoo-finance’s implantation is easy and only requires to import fix_yahoo_finance into your code.
Quick Start
from pandas_datareader import data as pdr
import fix_yahoo_finance # <== that's all it takes :-)
# download dataframe
data = pdr.get_data_yahoo("SPY", start="2017-01-01", end="2017-04-30")
# download Panel
data = pdr.get_data_yahoo(["SPY", "IWM"], start="2017-01-01", end="2017-04-30")
I’ve also added some options to make life easier :)
Below is the full list of acceptable parameters:
data = pdr.get_data_yahoo(
# tickers list (single tickers accepts a string as well)
tickers = ["SPY", "IWM", "..."],
# start date (YYYY-MM-DD / datetime.datetime object)
# (optional, defaults is 1950-01-01)
start = "2017-01-01",
# end date (YYYY-MM-DD / datetime.datetime object)
# (optional, defaults is Today)
end = "2017-04-30",
# return a multi-index dataframe
# (optional, default is Panel, which is deprecated)
as_panel = False,
# group by ticker (to access via data['SPY'])
# (optional, default is 'column')
group_by = 'ticker',
# adjust all OHLC automatically
# (optional, default is False)
auto_adjust = True
)
Installation
Install fix_yahoo_finance using pip:
$ pip install fix_yahoo_finance --upgrade --no-cache-dir
Install Chrome Driver
$ wget https://chromedriver.storage.googleapis.com/2.29/chromedriver_linux64.zip
$ unzip chromedriver_linux64.zip
$ mv chromedriver /usr/local/sbin/chromedriver
* The above code is for Linux 64bit. Other OS version are listed here.
Setting Chrome Driver Location
If you can’t / won’t install the Chrome driver in your system’s $PATH, you can explicitly tell fix-yahoo-finance the location of the Chrome driver executable:
import fix_yahoo_finance
fix_yahoo_finance.set_chromedriver_path('/path/to/chromedriver')
Then, simply continue normally.
Requirements
Python >=3.4
Pandas (tested to work with >=0.18.1)
pandas_datareader >= 0.4.0
Numpy >= 1.11.1
Selenium >= 3.0.2
PyVirtualDisplay >= 0.2.1 (optional, to)
Chrome Driver (installed in your path)
Legal Stuff
fix-yahoo-finance is distributed under the GNU Lesser General Public License v3.0. See the LICENSE.txt file in the release for details.
P.S.
Please drop me an note with any feedback you have.
Ran Aroussi
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file fix-yahoo-finance-0.0.3.tar.gz
.
File metadata
- Download URL: fix-yahoo-finance-0.0.3.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44bcbb5f6212a2ed9540c8bb959142cb4b6f762768d79a53e4fa406592f04960 |
|
MD5 | d9f227e252db2758a485181a2b9eddc3 |
|
BLAKE2b-256 | c27d95829a7a85d403a0bd983d6547ac8252102afc724af959c7a322950b1b66 |