text-matching / app.py
Keane Moraes
initial commit
d9ce745
raw
history blame
160 Bytes
import streamlit as st
import time
st.title("Hello World")
progbar = st.progress(0)
for i in range(100):
progbar.progress(i + 1)
time.sleep(0.1)