Spaces:
Sleeping
Sleeping
File size: 582 Bytes
48fd95e 516bec8 48fd95e 516bec8 bfdb9ce 48fd95e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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()
|