Yahoo Finance API

From NovaOrdis Knowledge Base
Revision as of 05:32, 14 October 2023 by Ovidiu (talk | contribs) (→‎Usage)
Jump to navigation Jump to search

External

Internal

Overview

Installation

pip3 install yfinance

Usage

import yfinance as yf

m = yf.Ticker('GOOGL').info
print("Close Price", m['regularMarketPreviousClose'])

# historical data
data = yf.download('FCOM', '2023-10-01', '2023-10-13')

Ticker

Ticker