11 lines
499 B
Python
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() |