streamlit module
Streamlit.
How to use Streamlit in 3 seconds:
1. Write an app >>> import streamlit as st >>> st.write(anything_you_want)
2. Run your app $ streamlit run my_script.py
3. Use your app A new tab will open on your browser. That’s your Streamlit app!
Modify your code, save it, and watch changes live on your browser.
Take a look at the other commands in this module to find out what else Streamlit can do:
>>> dir(streamlit)
Or try running our “Hello World”:
$ streamlit hello
For more detailed info, see https://docs.streamlit.io.