Search code examples
progress-barpandas-datareader

Progressbar on Pandas-datareader?


Is it possible to wrap df = web.get_data_yahoo(tickers, start, end) inside a progressbar? It takes about 20 mins but it would it be possible to see the progress?


Solution

  • You can accomplish this with tqdm. Here is a link Click here

    This would work on tickers to see how many variables have been completed.