pip install streamlit
To upload files, please first save the app
import streamlit as st
st.title("Welcome to Streamlit!")
st.write("This is a simple Streamlit app to get you started.")
st.markdown("""
### What can you do with Streamlit?
- Create data apps in pure Python
- Deploy web applications without frontend experience
- Build interactive dashboards
- Visualize data easily
- And much more!
""")
if st.button("Click me!"):
st.balloons()
st.write("Thanks for clicking! 🎉")
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?