Update app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
|
|
| 1 |
import streamlit as st
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
|
|
|
| 1 |
+
|
| 2 |
import streamlit as st
|
| 3 |
+
import time
|
| 4 |
+
from Auth import main
|
| 5 |
+
|
| 6 |
+
progress_text = "Operation in progress. Please wait."
|
| 7 |
+
my_bar = st.progress(0, text=progress_text)
|
| 8 |
+
|
| 9 |
+
for percent_complete in range(100):
|
| 10 |
+
time.sleep(0.1)
|
| 11 |
+
my_bar.progress(percent_complete + 1, text=progress_text)
|
| 12 |
|
| 13 |
+
main()
|