-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
30 lines (21 loc) · 1.03 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from utils import *
pages = {
"Home": [
st.Page("pages/home.py", title="Home", icon="🔥"),
st.Page("pages/intro.py", title="Intro To Business Problem", icon="🤔"),
],
"Resources": [
st.Page("pages/data_intro.py", title="Data Overview", icon="✨"),
st.Page("pages/categories_and_items.py", title="Categories and Items Analysis", icon="🛍️"),
st.Page("pages/prices_and_brands_analysis.py", title="Prices and Brands Analysis", icon="💸"),
st.Page("pages/time_distribution_analysis.py", title="Time Distribution Analysis", icon="⏰"),
st.Page("pages/brand_analysis_extended.py",title="Brand Analysis Extended",icon="📊"),
st.Page("pages/suggested_items_analysis.py",title="Requested Items Analysis",icon="📋"),
st.Page("pages/rfm_model.py", title="Customer Segmentation Model", icon="👥"),
] ,
"Where From Here?": [
st.Page("pages/doc_redirection_page.py", title="Docs", icon="📘"),
]
}
pg = st.navigation(pages)
pg.run()