File size: 509 Bytes
48fd95e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import streamlit as st
st.set_page_config(page_title='Calorie Calculator')
import Calorie_calculator
import weightloss_tracker
import calorie_deficit
import rec_system
PAGES = {
    "Calorie Calculator": Calorie_calculator,
    "Calorie Deficit Calculator": calorie_deficit,
    "Weight Loss Tracker": weightloss_tracker,
    "Recommendation System": rec_system
}
st.sidebar.title('Calorie cum weight loss tracker')
selection = st.sidebar.radio("Go to", list(PAGES.keys()))
page = PAGES[selection]
page.app()