Py.Cafe

iisakkirotko/

streamlit-demo-exploration

Streamlit Demo: Interactive Exploration

DocsPricing
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import streamlit as st


st.markdown("## Hello, world!")
st.markdown(
    "This is a streamlit demo. If you put an `st.py` in the root of your home directory, you can write your own streamlit app."
)

value = st.slider("A slider", 0, 10, 5)
st.title("Value: %s" % value)

name = st.text_input("Your name")
st.write("Hello,", name or "world")