Spaces:
Sleeping
Sleeping
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") |