Spaces:
Sleeping
Sleeping
File size: 366 Bytes
bd01bd5 c3b9bdc bd01bd5 5bda64c bd01bd5 866994b c3b9bdc cf9d763 bd01bd5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import streamlit as st
from multiapp import MultiApp
from apps import home, deck, housing, upload
st.set_page_config(layout="wide")
apps = MultiApp()
# Add all your application here
apps.add_app("Real Estate", housing.app)
apps.add_app("Upload Vector Data", upload.app)
apps.add_app("Pydeck", deck.app)
apps.add_app("Home", home.app)
# The main app
apps.run()
|