tushar27's picture
From github updates
2482ff6
raw
history blame contribute delete
No virus
1.7 kB
##© 2023 Tushar Aggarwal. All rights reserved.
##Streamlit-Magic-Sheet
#######################################################################################################
#######################################################################################################
#Importind required libraries
#######################################################################################################
import streamlit as st
from pathlib import Path
import base64
import sys
from pathlib import Path
script_dir = Path(__file__).resolve().parent
project_root = script_dir.parent
sys.path.append(str(project_root))
#######################################################################################################
#Importing from SRC
#######################################################################################################
from src.Streamlit_Magic_Sheet.components.header import *
from src.Streamlit_Magic_Sheet.components.body import *
from src.Streamlit_Magic_Sheet.components.navigation import *
from src.Streamlit_Magic_Sheet.components.siderbar import *
from src.Streamlit_Magic_Sheet.components.metrics import *
from src.Streamlit_Magic_Sheet.components.charts import *
from src.Streamlit_Magic_Sheet.components.test import *
#######################################################################################################
#Research
#######################################################################################################