Skip to content
Advertisement

Can tqdm be embedded to html?

I want to embed tqdm progressbar to html or at least print it as html tag but i can’t find any documention of it. I only find how to print the progressbar in python notebook.

Is it possible to embed it in html?

Also is it possible to integrate tqdm with bokeh?

Advertisement

Answer

Tqdm progress bars can’t be embedded into HTML. The progress bar in the browser should somehow communicate with Python in order to update the progress bar. Here is one good example of how to do this in Flask.

Bokeh has a request opened in 2017 for a progress bar that is still open and here is a similar question for how to create a progress bar in Bokeh.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement