import yfinance as yf
stock_ticker = yf.Ticker('NVDA')
stock_info = stock_ticker.get_financials(freq = "quarterly")
stock_info
2024-01-31 EPS has NaN value.
I can’t understand that it is very famous stock but yfinance missed EPS value?
Is there any solution or another nice library to check EPS value?