Files
testing123/streamlit_dashboard/streamlit_pages/comparer_streamlit_page.py
2026-05-21 08:40:24 -04:00

11 lines
499 B
Python

import streamlit as st
from streamlit_authenticator import Authenticate
# Imports from this module
from streamlit_constants import USDA_API_KEY, CENSUS_YEAR
from page_classes.report_comparer_page_class import ComparerPage
from page_classes.page_class_constants import REPORT_CONFIGS
from page_classes.authentication_page_wrapper import AuthenticationPageWrapper
auth_wrapper = AuthenticationPageWrapper(inner_report_page=ComparerPage, report_config=REPORT_CONFIGS[ComparerPage])
auth_wrapper.run()