Streamlit is a simplest and fastest way to create data apps. Steps are as below:
- Create your first new python script in your local directory ie c:\\dev\streamlit_tutorial or /var/dev/streamlit_tutorial as HelloWorld.py
- Open HelloWorld.py in your favourite IDE.
import streamlit as st
st.title("Hello World first App!!")
- Execute the streamlit from the command line:
streamlit run HelloWorld.py