Download market data from Yahoo! Finance's API
Go to file
Value Raider 0713d93867 Bump version to 0.2.28 2023-08-13 13:05:02 +01:00
.github Fix yaml issue template rendering 2023-07-19 18:21:04 +01:00
tests Merge branch 'main' into dev 2023-08-13 12:40:11 +01:00
yfinance Bump version to 0.2.28 2023-08-13 13:05:02 +01:00
.gitignore fix: start year on history 2023-06-26 18:43:35 +02:00
.travis.yml removed python 3.5 support 2021-12-30 15:36:11 +00:00
CHANGELOG.rst Bump version to 0.2.28 2023-08-13 13:05:02 +01: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 Bump requests to 2.31 and removes cryptography. 2023-07-20 17:17:44 -06:00
meta.yaml Bump version to 0.2.28 2023-08-13 13:05:02 +01:00
mkdocs.yml CI stuff 2021-07-03 14:41:02 +01:00
requirements.txt Bump requests to 2.31 and removes cryptography. 2023-07-20 17:17:44 -06:00
setup.cfg renamed file 2019-10-27 19:21:47 +02:00
setup.py Merge branch 'main' into dev 2023-08-13 12:40:11 +01:00
test_yfinance.py Replace prints with logging module 2023-02-16 16:53:33 -08: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 »


Quick Start

The Ticker module

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

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

Multiple tickers

To initialize multiple Ticker objects, use

To download price history into one table:

yf.download() and Ticker.history() have many options for configuring fetching and processing. Review the Wiki for more options and detail.

Logging

yfinance now uses the logging module to handle messages, default behaviour is only print errors. If debugging, use yf.enable_debug_mode() to switch logging to debug with custom formatting.

Smarter scraping

To use a custom requests session (for example to cache calls to the API or customize the User-agent header), pass a session= argument to the Ticker constructor.

Combine a requests_cache with rate-limiting to avoid triggering Yahoos rate-limiter/blocker that can corrupt data.

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().

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():


Installation

Install yfinance using pip:

Test new features by installing betas, provide feedback in corresponding Discussion:

To install yfinance using conda, see this.

Requirements

Optional (if you want to use pandas_datareader)

Developers: want to contribute?

yfinance relies on community to investigate bugs and contribute code. Developer guide: https://github.com/ranaroussi/yfinance/discussions/1084


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