File size: 394 Bytes
ccc428c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
from Home import home_page
from DataExtraction import data_extraction_page
from face_comparison import face_comparison_page
PAGES = {
"Home": home_page,
"Data Extraction": data_extraction_page,
"Face Comparison": face_comparison_page
}
st.sidebar.title('Navigation')
selection = st.sidebar.radio("Go to", list(PAGES.keys()))
page = PAGES[selection]
page()
|