Learn Python, Microsoft 365 and Google Workspace
Streamlit is an open-source Python library designed for creating and sharing web applications for data science and machine learning. It makes it easy to build interactive, data-driven applications with minimal code and allows you to share them directly with others.
Here’s an introduction to using Streamlit:
To install Streamlit, use:
pip install streamlit
Streamlit apps are written in Python scripts. Here’s a simple app to get started:
# my_app.py
import streamlit as st
st.title("Hello, Streamlit!")
st.write("This is a simple web app created with Streamlit.")
# Add an interactive slider
number = st.slider("Pick a number", 0, 100)
st.write("The selected number is:", number)
To run the app, navigate to the folder where my_app.py
is saved, and run:
streamlit run my_app.py
This opens a new browser window with your app.
st.button("Click me!")
st.text_input("Enter text:")
st.selectbox("Choose an option:", ["A", "B", "C"])
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.randn(20, 3), columns=['A', 'B', 'C'])
st.line_chart(df)
col1, col2 = st.columns(2)
col1.write("Column 1")
col2.write("Column 2")