first commit

This commit is contained in:
2026-05-21 08:40:24 -04:00
commit b084545275
711 changed files with 3659856 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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()