streamlit
<p>Sometimes you'd like to show a demo of working code without a jupyter notebook around it. The code is useful, but it might scare some stakeholders away. For those moments <a href="https://docs.streamlit.io/">streamlit</a> can be a great option.</p>
1 - Hello World
2 - Sliders
3 - Line Charts
4 - Matplotlib
5 - Sidebar
6 - Algorithm Settings
7 - Checkboxes
8 - Cache
9 - Pandas
To get started with streamlit, you need to install it in your virtual environment.
pip install streamlit
Note that it would be good to also take the time to install the other dependencies we'll use in this series of videos.
pip install pandas matplotlib scikit-learn
To run the demo after installation you need to run;
streamlit hello