Spaces:
Sleeping
Sleeping
File size: 601 Bytes
519b419 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# -*- coding:utf-8 -*-
import streamlit as st
def st_pb(method):
def progress_bar(ref):
container = st.empty()
bar = st.progress(0)
pg_gen = method(ref)
try:
while True:
progress = next(pg_gen)
bar.progress(progress[0])
if progress[2]:
container.write("✅ Processing... " + progress[1])
else:
container.write("❌️ Errror with..." + progress[1])
except StopIteration as result:
return result.value
return progress_bar
|