gravity / pages /1_Validate.py
ayushnoori's picture
Reintroduce app.py
92afb9c
raw
history blame
298 Bytes
import streamlit as st
# Path manipulation
from pathlib import Path
import sys
sys.path.append('..')
sys.path.append('scripts')
# Custom and other imports
import project_config
from utils import add_logo
# Insert logo
add_logo(project_config.MEDIA_DIR / 'gravity_logo.png')
st.title("Validate")