xxxxxxxxxx
import streamlit as st
# Title of the app
st.title('Simple Streamlit App')
# Text input
user_input = st.text_input('Enter your name:', 'Type here')
# Display the user input
st.write(f'Hello, {user_input}!')
xxxxxxxxxx
Streamlit is a python based framework to turn data scripts into shareable web apps, in a simplified way.
No front‑end experience required.
xxxxxxxxxx
math-problem-generator
│
├── .streamlit
│ └── config.toml
│
├── app
│ ├── main.py
│ └── utils.py
│
├── assets
│
├── data
│
└── requirements.txt