Download market data from Yahoo! Finance's API
Go to file
ValueRaider efd278a3e0 Relax requests_cache purging - allow empty earnings calendar table 2023-02-07 20:38:51 +00:00
.github Reorder contents of bug_report.md 2023-01-23 11:53:00 +00:00
tests Merge branch 'dev' into feature/session-prune-v2 2023-02-07 13:38:32 +00:00
yfinance Relax requests_cache purging - allow empty earnings calendar table 2023-02-07 20:38:51 +00:00
.gitignore Cleaned up .gitignore 2022-11-06 17:01:09 +01:00
.travis.yml removed python 3.5 support 2021-12-30 15:36:11 +00:00
CHANGELOG.rst Bump version to 0.2.9 2023-01-26 22:21:46 +00:00
LICENSE.txt new license 2019-04-17 00:16:22 +03:00
MANIFEST.in first commit 2017-05-21 13:21:55 +03:00
README.md Merge branch 'dev' into feature/session-prune-v2 2023-02-07 13:38:32 +00:00
meta.yaml Bump version to 0.2.9 2023-01-26 22:21:46 +00:00
mkdocs.yml CI stuff 2021-07-03 14:41:02 +01:00
requirements.txt Switch 'pycryptodome' -> 'cryptography' 2022-12-19 12:28:51 +00:00
setup.cfg renamed file 2019-10-27 19:21:47 +02:00
setup.py Switch 'pycryptodome' -> 'cryptography' 2022-12-19 12:28:51 +00:00
test_yfinance.py Improve bad ticker handling ; Remove redundant get_earnings_history() 2022-11-06 18:30:05 +00:00

README.md

Download market data from Yahoo! Finances API


Yahoo!, Y!Finance, and Yahoo! finance are registered trademarks of Yahoo, Inc.

yfinance is not affiliated, endorsed, or vetted by Yahoo, Inc. Its an open-source tool that uses Yahoos publicly available APIs, and is intended for research and educational purposes.

You should refer to Yahoo!s terms of use (here, here, and here) for details on your rights to use the actual data downloaded. Remember - the Yahoo! finance API is intended for personal use only.


Python version PyPi version PyPi status PyPi downloads Travis-CI build status CodeFactor Star this repo Follow me on twitter

yfinance offers a threaded and Pythonic way to download market data from Yahoo!Ⓡ finance.

→ Check out this Blog post for a detailed tutorial with code examples.

Changelog »


News [2023-01-27]

Since December 2022 Yahoo has been encrypting the web data that yfinance scrapes for non-market data. Fortunately the decryption keys are available, although Yahoo moved/changed them several times hence yfinance breaking several times. yfinance is now better prepared for any future changes by Yahoo.

Why is Yahoo doing this? We dont know. Is it to stop scrapers? Maybe, so weve implemented changes to reduce load on Yahoo. In December we rolled out version 0.2 with optimised scraping. Then in 0.2.6 introduced Ticker.fast_info, providing much faster access to some info elements wherever possible e.g. price stats and forcing users to switch (sorry but we think necessary). info will continue to exist for as long as there are elements without a fast alternative.

Quick Start

The Ticker module

The Ticker module, which allows you to access ticker data in a more Pythonic way:

import yfinance as yf

msft = yf.Ticker("MSFT")

# get all stock info (slow)
msft.info
# fast access to subset of stock info (opportunistic)
msft.fast_info

# get historical market data
hist = msft.history(period="1mo")

# show meta information about the history (requires history() to be called first)
msft.history_metadata

# show actions (dividends, splits, capital gains)
msft.actions
msft.dividends
msft.splits
msft.capital_gains  # only for mutual funds & etfs

# show share count
# - yearly summary:
msft.shares
# - accurate time-series count:
msft.get_shares_full(start="2022-01-01", end=None)

# show financials:
# - income statement
msft.income_stmt
msft.quarterly_income_stmt
# - balance sheet
msft.balance_sheet
msft.quarterly_balance_sheet
# - cash flow statement
msft.cashflow
msft.quarterly_cashflow
# see `Ticker.get_income_stmt()` for more options

# show holders
msft.major_holders
msft.institutional_holders
msft.mutualfund_holders

# show earnings
msft.earnings
msft.quarterly_earnings

# show sustainability
msft.sustainability

# show analysts recommendations
msft.recommendations
msft.recommendations_summary
# show analysts other work
msft.analyst_price_target
msft.revenue_forecasts
msft.earnings_forecasts
msft.earnings_trend

# show next event (earnings, etc)
msft.calendar

# Show future and historic earnings dates, returns at most next 4 quarters and last 8 quarters by default. 
# Note: If more are needed use msft.get_earnings_dates(limit=XX) with increased limit argument.
msft.earnings_dates

# show ISIN code - *experimental*
# ISIN = International Securities Identification Number
msft.isin

# show options expirations
msft.options

# show news
msft.news

# get option chain for specific expiration
opt = msft.option_chain('YYYY-MM-DD')
# data available via: opt.calls, opt.puts

If you want to use a proxy server for downloading data, use:

To initialize multiple Ticker objects, use

Caching

Heavy users will quickly encounter Yahoos rate limits on free use. A requests session can help by caching web requests. To use, pass a session= argument to the Ticker constructor:

To assist, yfinance removes requests from cache that failed to parse. To disable this feature call yfinance.disable_prune_session_cache().

Add expiration to the session to prune old data:

More info here: https://requests-cache.readthedocs.io/en/stable/user_guide/expiration.html

Fetching data for multiple tickers

Ive also added some options to make life easier :)

Timezone cache store

When fetching price data, all dates are localized to stock exchange timezone. But timezone retrieval is relatively slow, so yfinance attemps to cache them in your users cache folder. You can direct cache to use a different location with set_tz_cache_location():

Managing Multi-Level Columns

The following answer on Stack Overflow is for How to deal with multi-level column names downloaded with yfinance?

  • yfinance returns a pandas.DataFrame with multi-level column names, with a level for the ticker and a level for the stock price data
    • The answer discusses:
      • How to correctly read the the multi-level columns after saving the dataframe to a csv with pandas.DataFrame.to_csv
      • How to download single or multiple tickers into a single dataframe with single level column names and a ticker column

pandas_datareader override

If your code uses pandas_datareader and you want to download data faster, you can “hijack” pandas_datareader.data.get_data_yahoo() method to use yfinance while making sure the returned data is in the same format as pandas_datareaders get_data_yahoo().


Installation

Install yfinance using pip:

To install yfinance using conda, see this.

Requirements

Optional (if you want to use pandas_datareader)


yfinance is distributed under the Apache Software License. See the LICENSE.txt file in the release for details.

AGAIN - yfinance is not affiliated, endorsed, or vetted by Yahoo, Inc. Its an open-source tool that uses Yahoos publicly available APIs, and is intended for research and educational purposes. You should refer to Yahoo!s terms of use (here, here, and here) for detailes on your rights to use the actual data downloaded.


P.S.

Please drop me an note with any feedback you have.

Ran Aroussi