shamim237's picture
initial_commit
f11b302
raw
history blame contribute delete
392 Bytes
import streamlit as st
class MultiApp:
def __init__(self):
self.apps = []
def add_app(self, title, func):
self.apps.append({
"title": title,
"function": func
})
def run(self):
app = st.selectbox(
'Choose one',
self.apps,
format_func=lambda app: app['title'])
app['function']()