Niharmahesh commited on
Commit
e274491
·
verified ·
1 Parent(s): 172e94c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -11,7 +11,7 @@ import math
11
  import re
12
  import pyarrow.csv as csv
13
  from concurrent.futures import ThreadPoolExecutor, as_completed
14
- import pages.recommender
15
  # Set page config for a wider layout and custom theme
16
  st.set_page_config(layout="wide", page_title="Job Listings Dashboard")
17
 
@@ -333,7 +333,7 @@ def main():
333
 
334
  # Sidebar for navigation
335
  st.sidebar.title("Navigation")
336
- page = st.sidebar.radio("Go to", ["Dashboard", "Data Explorer","About","Recommender"])
337
 
338
  if page == "Dashboard":
339
  display_dashboard(df)
@@ -343,9 +343,7 @@ def main():
343
  display_about_page()
344
  elif page=='Version Updates':
345
  st.swtich_page('pages/version_updates.py')
346
- elif page == 'Recommender':
347
- # Load the Recommender page and ask for password
348
- show_recommender_page()
349
 
350
  if __name__ == "__main__":
351
  main()
 
11
  import re
12
  import pyarrow.csv as csv
13
  from concurrent.futures import ThreadPoolExecutor, as_completed
14
+
15
  # Set page config for a wider layout and custom theme
16
  st.set_page_config(layout="wide", page_title="Job Listings Dashboard")
17
 
 
333
 
334
  # Sidebar for navigation
335
  st.sidebar.title("Navigation")
336
+ page = st.sidebar.radio("Go to", ["Dashboard", "Data Explorer","About"])
337
 
338
  if page == "Dashboard":
339
  display_dashboard(df)
 
343
  display_about_page()
344
  elif page=='Version Updates':
345
  st.swtich_page('pages/version_updates.py')
346
+
 
 
347
 
348
  if __name__ == "__main__":
349
  main()