Update app.py
Browse files
app.py
CHANGED
@@ -13,10 +13,10 @@ def main():
|
|
13 |
progress_text = st.empty()
|
14 |
|
15 |
# Simulate signal fetching (replace this with actual signal fetching code)
|
16 |
-
for i in range(
|
17 |
time.sleep(0.5) # Simulating signal fetching delay
|
18 |
-
progress_bar.progress((i + 1) /
|
19 |
-
progress_text.text(f"Fetching signals... {i + 1}/
|
20 |
|
21 |
# Hide progress bar and text
|
22 |
progress_bar.empty()
|
|
|
13 |
progress_text = st.empty()
|
14 |
|
15 |
# Simulate signal fetching (replace this with actual signal fetching code)
|
16 |
+
for i in range(50):
|
17 |
time.sleep(0.5) # Simulating signal fetching delay
|
18 |
+
progress_bar.progress((i + 1) / 50)
|
19 |
+
progress_text.text(f"Fetching signals... {i + 1}/50")
|
20 |
|
21 |
# Hide progress bar and text
|
22 |
progress_bar.empty()
|