Streamlit
Numerous supports Streamlit as an app engine; however, we have no affiliation with them. If you decide to use Streamlit, we encourage you to join their community to contribute to their development and learn more.
Home page: Streamlit (opens in a new tab)
Documentation: Streamlit documentation (opens in a new tab)
Streamlit "Hello, World!" Example
Create a file and name it app.py
. Copy and paste the following code into the file:
app.py
import streamlit as st
st.text('hello world')
Create a file and name it requirements.txt
. Copy and paste the following code into the file:
requirements.txt
streamlit
Alternatively, you can clone the code on this page from here (opens in a new tab).