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")