Dataframe / table with progress bar

I have a list of dict each with a progress key and int value.

How can I use this to display progress bar on each row on a progress column ?

Hi, you can use:

  1. st.progressbar Display progress and status - Streamlit Docs

Or

  1. hydralit components hydralit-components · PyPI

Cheers

Yeah but i’m unsure how I would display in inside a st.table / st.dataframe.

setting some_dict['progress'] = st.progress(99) will just write it before the table / dataframe itself and the dataframe column just contains a Boolean value. But i’m trying to achieve where each row has its own progress status.

An example would be a table for download status. With all files displayed and each row having its own progress bar.

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.