import yfinance as yf
stock = yf.Ticker("AAPL")
# For a lot of information about the company
stock.info
stock.info['beta']
stock.info['trailingPE']
stock.get_cashflow()
stock.recommendations.tail(20)stock.actions
stock.get_balance_sheet()
stock.history(start = startDate, end = endDate)
暂无评论