Streamlit for General Web Development

641 Views Asked by At

I've been using Streamlit for a while. I looked everywhere I could. Does anyone else know if there is a package like Streamlit for general website development using Python?

For reference, this is Streamlit

2

There are 2 best solutions below

0
ADev On

A little late and no, as of now there is not. Streamlit is designed for making Machine learning and data science web apps. For more information, you can read this. https://towardsdatascience.com/streamlit-101-an-in-depth-introduction-fc8aad9492f2

0
kmcgrady On

This may not entirely answer your question, but Streamlit now has sharing functionality so you can deploy your webapp for others to easily access. See https://www.streamlit.io/sharing

That being said, Streamlit has very specific functionality that doesn't do well for generalized web development. For that you will look for Flask for a simple framework for building website and Django if you want higher level implementation for Python web development.