Convert Figma logo to code with AI

ranaroussi logoyfinance

Download market data from Yahoo! Finance's API

13,247
2,336
13,247
183

Top Related Projects

Extract data from a wide range of Internet sources into a pandas DataFrame.

2,127

Common financial technical indicators implemented in Pandas.

Python module to get stock data from Yahoo! Finance

Real time stock and option data.

A python wrapper for Alpha Vantage API for financial data.

17,609

Zipline, a Pythonic Algorithmic Trading Library

Quick Overview

yfinance is a popular Python library that provides a simple and efficient way to download historical market data from Yahoo Finance. It offers a reliable alternative to the deprecated Yahoo Finance API, allowing users to fetch stock quotes, financial statements, and other market data for analysis and research purposes.

Pros

  • Easy to use with a straightforward API
  • Provides access to a wide range of financial data, including stock prices, dividends, and company information
  • Supports downloading data for multiple symbols simultaneously
  • Regularly maintained and updated by the community

Cons

  • Relies on web scraping, which may be affected by changes to Yahoo Finance's website structure
  • Data accuracy and availability can sometimes be inconsistent
  • Limited historical data compared to paid financial data providers
  • May experience rate limiting or temporary blocks from Yahoo Finance

Code Examples

Fetching historical stock data:

import yfinance as yf

# Download historical data for AAPL
aapl = yf.Ticker("AAPL")
hist = aapl.history(period="1mo")
print(hist)

Getting company information:

import yfinance as yf

# Get company information for Tesla
tesla = yf.Ticker("TSLA")
info = tesla.info
print(f"Company Name: {info['longName']}")
print(f"Market Cap: ${info['marketCap']:,}")

Downloading data for multiple symbols:

import yfinance as yf

# Download data for multiple symbols
data = yf.download(["AAPL", "MSFT", "GOOG"], start="2022-01-01", end="2023-01-01")
print(data.head())

Getting Started

To get started with yfinance, follow these steps:

  1. Install the library using pip:

    pip install yfinance
    
  2. Import the library in your Python script:

    import yfinance as yf
    
  3. Use the Ticker object to fetch data for a specific stock:

    ticker = yf.Ticker("AAPL")
    history = ticker.history(period="1mo")
    print(history)
    

That's it! You can now start exploring the various features and data available through yfinance.

Competitor Comparisons

Extract data from a wide range of Internet sources into a pandas DataFrame.

Pros of pandas-datareader

  • Supports multiple data sources beyond Yahoo Finance
  • Integrated with the pandas ecosystem
  • More stable and consistent API

Cons of pandas-datareader

  • Less frequent updates and maintenance
  • Limited to daily data for most sources
  • Slower data retrieval compared to yfinance

Code Comparison

pandas-datareader:

import pandas_datareader as pdr
data = pdr.get_data_yahoo("AAPL", start="2020-01-01", end="2021-01-01")

yfinance:

import yfinance as yf
ticker = yf.Ticker("AAPL")
data = ticker.history(start="2020-01-01", end="2021-01-01")

Both libraries provide similar functionality for fetching historical stock data. pandas-datareader offers a more straightforward approach with a single function call, while yfinance uses a Ticker object for more advanced features.

yfinance generally provides faster data retrieval and offers additional features like real-time data and company information. However, pandas-datareader is more versatile in terms of data sources and integrates seamlessly with the pandas ecosystem.

Choose pandas-datareader for stability and multiple data sources, or yfinance for speed and additional stock-specific features.

2,127

Common financial technical indicators implemented in Pandas.

Pros of finta

  • Focuses on technical analysis indicators and functions
  • Provides a wide range of financial indicators (over 80)
  • Lightweight and easy to integrate into existing projects

Cons of finta

  • Limited to technical analysis, doesn't provide market data retrieval
  • Less actively maintained compared to yfinance
  • Smaller community and fewer contributors

Code Comparison

finta example:

from finta import TA
import pandas as pd

df = pd.DataFrame(your_data)
sma = TA.SMA(df, period=14)
rsi = TA.RSI(df)

yfinance example:

import yfinance as yf

ticker = yf.Ticker("AAPL")
hist = ticker.history(period="1mo")
sma = hist['Close'].rolling(window=14).mean()

finta focuses on providing technical indicators, while yfinance is primarily used for fetching market data. yfinance offers built-in data retrieval and some basic analysis functions, whereas finta requires you to provide the data but offers a more comprehensive set of technical indicators.

finta is ideal for projects that already have data and need advanced technical analysis tools. yfinance is better suited for projects that need to fetch market data and perform basic analysis. For a complete solution, some developers use both libraries in conjunction.

Python module to get stock data from Yahoo! Finance

Pros of yahoo-finance

  • More established and mature project with a longer history
  • Offers a wider range of financial data beyond just stock prices
  • Better documentation and examples for beginners

Cons of yahoo-finance

  • Less frequently updated compared to yfinance
  • May have slower performance for large data requests
  • Limited support for real-time data

Code Comparison

yahoo-finance:

from yahoo_finance import Share
yahoo = Share('YHOO')
print(yahoo.get_price())
print(yahoo.get_trade_datetime())

yfinance:

import yfinance as yf
ticker = yf.Ticker("YHOO")
print(ticker.info['regularMarketPrice'])
print(ticker.info['regularMarketTime'])

Both libraries provide similar functionality for basic stock data retrieval, but yfinance offers a more streamlined and Pythonic API. The yahoo-finance library requires separate method calls for different data points, while yfinance allows access to multiple data points through a single 'info' dictionary. yfinance also provides more advanced features like downloading historical data and accessing options data, making it more versatile for complex financial analysis tasks.

Real time stock and option data.

Pros of wallstreet

  • Simpler API with fewer dependencies
  • Faster execution for basic stock data retrieval
  • Supports both synchronous and asynchronous operations

Cons of wallstreet

  • Less comprehensive data coverage compared to yfinance
  • Fewer advanced features and analysis tools
  • Smaller community and less frequent updates

Code Comparison

wallstreet:

from wallstreet import Stock
s = Stock('AAPL')
print(s.price)
print(s.change)

yfinance:

import yfinance as yf
ticker = yf.Ticker('AAPL')
print(ticker.info['regularMarketPrice'])
print(ticker.info['regularMarketChange'])

Both libraries provide easy access to basic stock data, but yfinance offers more detailed information and additional features. wallstreet's API is more straightforward for simple use cases, while yfinance provides a more comprehensive set of tools for in-depth analysis.

wallstreet is suitable for quick, basic stock data retrieval, whereas yfinance is better suited for more complex financial analysis and research tasks. The choice between the two depends on the specific requirements of your project and the depth of financial data needed.

A python wrapper for Alpha Vantage API for financial data.

Pros of Alpha Vantage

  • Offers a wider range of financial data, including forex and cryptocurrencies
  • Provides more detailed fundamental data and technical indicators
  • Has official API documentation and support

Cons of Alpha Vantage

  • Requires an API key for access
  • Has usage limits, especially for free tier users
  • May have slower data retrieval compared to yfinance

Code Comparison

Alpha Vantage:

from alpha_vantage.timeseries import TimeSeries
ts = TimeSeries(key='YOUR_API_KEY')
data, _ = ts.get_daily('AAPL')

yfinance:

import yfinance as yf
ticker = yf.Ticker('AAPL')
data = ticker.history(period='1d')

Both libraries offer simple ways to fetch stock data, but Alpha Vantage requires an API key and uses a different method structure. yfinance provides a more straightforward approach without the need for authentication, making it easier for quick data retrieval. However, Alpha Vantage's structure allows for more flexibility in accessing various types of financial data beyond just stock prices.

17,609

Zipline, a Pythonic Algorithmic Trading Library

Pros of Zipline

  • More comprehensive backtesting framework with built-in portfolio management
  • Supports custom data sources and complex trading strategies
  • Offers a simulation environment for testing algorithms

Cons of Zipline

  • Steeper learning curve due to its complexity
  • Less frequently updated compared to yfinance
  • Requires more setup and configuration

Code Comparison

Zipline example:

from zipline.api import order, record, symbol

def initialize(context):
    context.asset = symbol('AAPL')

def handle_data(context, data):
    order(context.asset, 10)
    record(AAPL=data.current(context.asset, 'price'))

yfinance example:

import yfinance as yf

aapl = yf.Ticker("AAPL")
hist = aapl.history(period="1mo")
print(hist['Close'])

Zipline provides a more structured approach for algorithmic trading, while yfinance offers simpler data retrieval and analysis. Zipline is better suited for complex backtesting and strategy development, whereas yfinance is more appropriate for quick data access and basic analysis tasks.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Download market data from Yahoo! Finance's API

*** IMPORTANT LEGAL DISCLAIMER ***


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

yfinance is not affiliated, endorsed, or vetted by Yahoo, Inc. It's an open-source tool that uses Yahoo's 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 CodeFactor Star this repo Follow me on twitter

yfinance offers a Pythonic way to fetch financial & market data from Yahoo!Ⓡ finance.

Main components

  • Ticker: single ticker data
  • Tickers: multiple tickers' data
  • download: download market data for multiple tickers
  • Search: quotes and news from search
  • Sector and Industry: sector and industry information
  • EquityQuery and Screener: build query to screen market

NEW DOCUMENTATION WEBSITE: ranaroussi.github.io/yfinance

Installation

Install yfinance from PYPI using pip:

$ pip install yfinance

The list of changes can be found in the Changelog

Developers: want to contribute?

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


Legal Stuff

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. It's an open-source tool that uses Yahoo's 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.


P.S.

Please drop me a note with any feedback you have.

Ran Aroussi