I have a real big list of stocks with ISIN and WKN-Number. My aim is to use pandas_datareader to get now historical data from that stocks. My problem is, the function e.g.
import pandas_datareader as web
stock = web.DataReader('ALB', data_source="yahoo", start="01.01.2021", end="30.10.2021")
only can work with ticker-symbols. Is there some way (maybe other library) to solve that or some algorithm to transform the Numbers into ticker symbols?