shrut27's picture
Update app.py
bfdb9ce
raw
history blame contribute delete
582 Bytes
import streamlit as st
st.set_page_config(page_title='Calorie Calculator')
import Calorie_calculator
import weightloss_tracker
import calorie_deficit
import rec_system
import food_rec
PAGES = {
"Calorie Calculator": Calorie_calculator,
"Calorie Deficit Calculator": calorie_deficit,
"Weight Loss Tracker": weightloss_tracker,
"Recommendation System": rec_system,
"Food Recommendation based on BMI/region": food_rec
}
st.sidebar.title('Calorie cum weight loss tracker')
selection = st.sidebar.radio("Go to", list(PAGES.keys()))
page = PAGES[selection]
page.app()