Show progress(進捗状況を表示
長時間実行される計算をアプリに追加する場合、 st.progress()ステータスをリアルタイムで表示するために使用できます。
import streamlit as st import time 'Starting a long computation...' # Add a placeholder latest_iteration = st.empty() bar = st.progress(0) for i in range(100): # Update the progress bar with each iteration. latest_iteration.text(f'Iteration {i+1}') bar.progress(i + 1) time.sleep(0.1) '...and now we\'re done!'