import streamlit as st import yfinance as yf st.title('Learning streamlit header') st.header('Learning streamlit title') st.write('Learning streamlit normal write') agree = st.checkbox('I agree') if agree: st.write('ok') data = yf.download("AAPL", start="2022-08-25", end="2022-08-28") st.write(data) st.table(data) st.line_chart(data)