Skip to main content

Yahoo! Finance market data downloader

Project description

Yahoo! Finance market data downloader

=====================================

Ever since Yahoo! finance <https://finance.yahoo.com>_ decommissioned their historical data API, many programs that relied on it to stop working.

yfinance_ez aimes to solve this problem by offering a reliable and Pythonic way to download historical market data from Yahoo! finance.

Note from Ezra:

This library was originally created by Ran Aroussi and named yfinance. I encountered some bugs using it and wasn't able to reach him about updating his package, so I've renamed it for now to yfinance-ez so I can work on it. I've done some significant restructuring and added improved documentation, but the credit for much of the html parsing code is not mine. I've also pared down the package to focus just on the Ticker class and its functionality which I've gotten working.

Quick Start

The Ticker module

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

    import yfinance_ez as yf

    msft = yf.Ticker("MSFT")

    # get stock info
    msft.info

    # get historical market data for the last quarter
    # This method also accepts start and end dates and/or time intervals
    # so you can customize what you're looking for.
    hist = msft.get_history(period=yf.TimePeriods.Quarter)

    # show actions (dividends, splits) for the last retrieved historical period
    msft.actions

    # show dividends for the last retrieved historical period
    msft.dividends

    # show splits for the last retrieved historical period
    msft.splits

    # show financials
    msft.financials
    msft.quarterly_financials

    # show major holders
    msft.major_holders

    # show institutional holders
    msft.institutional_holders

    # show balance heet
    msft.balance_sheet
    msft.quarterly_balance_sheet

    # show cashflow
    msft.cashflow
    msft.quarterly_cashflow

    # show earnings
    msft.earnings
    msft.quarterly_earnings

    # show sustainability
    msft.sustainability

    # show analysts recommendations
    msft.recommendations

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

    # 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:

    import yfinance_ez as yf

    msft = yf.Ticker("MSFT", proxy="PROXY_SERVER")

If you want to get history data for multiple tickers using async, use:

    import yfinance_ez as yf

    async def get_history_multiple_tickers(ticker_symbols: List[str],
                                           **kwargs) -> List[yf.Ticker]:

    tickers = [yf.Ticker(ticker_symbol) for ticker_symbol in ticker_symbols]

    await asyncio.gather(
        *[ticker.get_history_async(**kwargs) for ticker in tickers])

    return tickers

Installation

Install yfinance_ez using pip:

    $ pip install yfinance_ez

Requirements

  • Python <https://www.python.org>_ >= 3.5+
  • Pandas <https://github.com/pydata/pandas>_ (tested to work with >=0.23.1)
  • Numpy <http://www.numpy.org>_ >= 1.11.1
  • requests <http://docs.python-requests.org/en/master/>_ >= 2.14.2

Legal Stuff

yfinance_ez is distributed under the Apache Software License. See the LICENSE.txt <./LICENSE.txt>_ file in the release for details.

P.S.

Please drop me an note with any feedback you have.

Ezra Schiff

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yfinance_ez-0.5.6.tar.gz (26.2 kB view details)

Uploaded Source

Built Distribution

yfinance_ez-0.5.6-py3-none-any.whl (26.9 kB view details)

Uploaded Python 3

File details

Details for the file yfinance_ez-0.5.6.tar.gz.

File metadata

  • Download URL: yfinance_ez-0.5.6.tar.gz
  • Upload date:
  • Size: 26.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.0 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.0

File hashes

Hashes for yfinance_ez-0.5.6.tar.gz
Algorithm Hash digest
SHA256 d393dc7e04291c4d642c0f7fce0b3d8f90e14c324df33c3ba99da50ff64b22ea
MD5 9291377096c9c7f2607729836ceed25b
BLAKE2b-256 dc1438f623b94509ebd32a911d5da8dcdfcd2d4e6cfd968c27988f2539722bc8

See more details on using hashes here.

File details

Details for the file yfinance_ez-0.5.6-py3-none-any.whl.

File metadata

  • Download URL: yfinance_ez-0.5.6-py3-none-any.whl
  • Upload date:
  • Size: 26.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.0 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.0

File hashes

Hashes for yfinance_ez-0.5.6-py3-none-any.whl
Algorithm Hash digest
SHA256 3f05e7281fc9765e48c6843bba714af977e343b60cfe7c86ed9257bcc2837e89
MD5 dcd572d14c0a4d101af55810ab76a548
BLAKE2b-256 e5670b7f3633afc220e2d7f618fa98adb5ee5ce7d014ffb9af413efa9e4f6a52

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page