DS_webclass / app.py
raymondEDS's picture
Upload 13 files
d1da800 verified
raw
history blame
310 Bytes
import streamlit as st
import os
import sys
# Add the current directory to the Python path
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
# Import the main app
from app.main import main, sidebar_navigation, load_css
if __name__ == "__main__":
load_css()
sidebar_navigation()
main()