Jan Mühlnikel commited on
Commit
af5e311
·
1 Parent(s): 0ef6d21

enhanced documentation

Browse files
app.py CHANGED
@@ -7,7 +7,6 @@ st.set_page_config(
7
  )
8
 
9
  from modules.navbar import show_navbar
10
- import similarity_page
11
 
12
  # reduce space to the top
13
  st.markdown("""
@@ -23,4 +22,3 @@ st.markdown("""
23
 
24
  # NAVBAR
25
  navbar = show_navbar()
26
- #similarity_page.show_multi_matching_page()
 
7
  )
8
 
9
  from modules.navbar import show_navbar
 
10
 
11
  # reduce space to the top
12
  st.markdown("""
 
22
 
23
  # NAVBAR
24
  navbar = show_navbar()
 
similarity_page.py → app_matching_page.py RENAMED
@@ -1,5 +1,5 @@
1
  """
2
- Page for similarities
3
  """
4
 
5
  ################
@@ -17,8 +17,6 @@ from functions.filter_single import filter_single
17
  from functions.multi_project_matching import calc_multi_matches
18
  from functions.same_country_filter import same_country_filter
19
  from functions.single_project_matching import find_similar
20
- #import psutil
21
- import os
22
  import gc
23
 
24
  """
 
1
  """
2
+ Dispaly matching pages
3
  """
4
 
5
  ################
 
17
  from functions.multi_project_matching import calc_multi_matches
18
  from functions.same_country_filter import same_country_filter
19
  from functions.single_project_matching import find_similar
 
 
20
  import gc
21
 
22
  """
modules/navbar.py CHANGED
@@ -1,6 +1,5 @@
1
  import streamlit as st
2
- from streamlit_option_menu import option_menu # https://github.com/victoryhb/streamlit-option-menu
3
- import similarity_page
4
 
5
  # giz-dsc colors
6
  # orange: #e5b50d
 
1
  import streamlit as st
2
+ import app_matching_page
 
3
 
4
  # giz-dsc colors
5
  # orange: #e5b50d