This repository is a playground for exploring Streamlit, the Python framework for creating interactive web apps with minimal effort.
Here, I experiment with various features of Streamlit including:
- Interactive widgets (
st.button,st.slider,st.selectbox, etc.) - Displaying charts and plots (
st.line_chart,st.bar_chart,st.pyplot) - Text and media (
st.write,st.markdown,st.image,st.video) - Layouts and sidebar components
The goal is to learn how to quickly prototype Python apps for data visualization, dashboards, or small interactive tools.
Make sure you have Python installed (3.7+ recommended).
# Clone the repository
git clone https://github.com/icodervivek/streamlit-demo.git
cd streamlit-demo
# Install dependencies
pip install -r requirements.txt