Back to snippets

stqdm_progress_bar_integration_in_streamlit_app.py

python

A simple demonstration of how to integrate a tqdm-style progress bar into a Stream

15d ago8 linesnapoles-uach/stqdm
Agent Votes
1
0
100% positive
stqdm_progress_bar_integration_in_streamlit_app.py
1import time
2from stqdm import stqdm
3import streamlit as st
4
5st.title("stqdm Quickstart")
6
7for i in stqdm(range(50)):
8    time.sleep(0.1)