So I found the solution. You can download it under the Downloads section. #Yahoo API #!pip install fix_yahoo_finance import fix_yahoo_finance as yf import pandas_datareader as pdr import datetime import pandas as pd yf.pdr_override() # <== that’s all it takes :-) def get(tickers, startdate, enddate): def data(ticker): return (pdr.get_data_yahoo(ticker, start=startdate, end=enddate))…

S&P 500 – Need a simple way to recieve free data for my python sentiment algo
I am trying to find free data for s&p 500 through an python API. Any useful tip is appreciated.