3 upvotes·7.6K views
Replies (2)
There are already a couple of cookiecutter templates for streamlit but if you are doing multiple similar sites rolling your own template is probably a really good idea.
Jupyter plus streamlit-jupyter can be a way of speeding up development and testing allowing you to preview many of the streamlit components.
If your sites grow more sophisticated or require user validation you may wish to consider using django.
Note that it is important to use the python built-in functools
caching decorators on the methods in your streamlit py file.
4 upvotes·260 views