Spaces:
GIZ
/
Running on CPU Upgrade

prashant commited on
Commit
0d8c065
1 Parent(s): 72e4dad

ver0.2 app update

Browse files
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -1,18 +1,17 @@
1
  import appStore.keyword_search as keyword_search
2
  import appStore.sdg_analysis as sdg_analysis
3
- import appStore.coherence as coherence
4
  import appStore.info as info
5
  from appStore.multiapp import MultiApp
6
  import streamlit as st
7
 
8
- # This branch is before the download option was implemented
9
- st.set_page_config(f'SDSN x GIZ Policy Action Tracking v0.1', layout="wide")
10
 
11
  app = MultiApp()
12
 
13
- app.add_app("SDG Analysis", sdg_analysis.app)
14
- app.add_app("Search", keyword_search.app)
15
- app.add_app("NDC Coherence", coherence.app)
16
- app.add_app("About", info.app)
17
 
18
  app.run()
 
1
  import appStore.keyword_search as keyword_search
2
  import appStore.sdg_analysis as sdg_analysis
3
+ #import appStore.coherence as coherence
4
  import appStore.info as info
5
  from appStore.multiapp import MultiApp
6
  import streamlit as st
7
 
8
+ st.set_page_config(page_title = 'SDSN x GIZ Policy Action Tracking v0.2',
9
+ initial_sidebar_state='expanded', layout="wide")
10
 
11
  app = MultiApp()
12
 
13
+ app.add_app("About","house", info.app)
14
+ app.add_app("SDG Analysis","gear",sdg_analysis.app)
15
+ app.add_app("Search","search", keyword_search.app)
 
16
 
17
  app.run()