As of today, the .info function does not provide any information for most tickers (e.g. AAPL). Only very few tickers are supported as of today (e.g. SRAD or HYRE). #1251
As of today, the .info function does not provide any information for most tickers (e.g. AAPL). Only very few tickers are supported as of today (e.g. SRAD or HYRE).
Example for AAPL:
import yfinance as yf
tickerYF = yf.Ticker("aapl")
print("tickerYF.info:",tickerYF.info)
Example for AAPL: import yfinance as yf tickerYF = yf.Ticker("aapl") print("tickerYF.info:",tickerYF.info)
Example for SRAD: import yfinance as yf tickerYF = yf.Ticker("srad") print("tickerYF.info:",tickerYF.info)
Were there any changes in yfinance or in Yahoo Finance in the night from December 16th to 17th, 2022?
Best regards onesoned
Originally posted by @onesoned in https://github.com/ranaroussi/yfinance/discussions/1250