Spaces:
Sleeping
Sleeping
File size: 298 Bytes
40fa5b9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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") |