Anustup commited on
Commit
7f0af57
1 Parent(s): 2e2ee1a

Upload 2 files

Browse files
Files changed (2) hide show
  1. pages/.DS_Store +0 -0
  2. pages/Info.py +10 -0
pages/.DS_Store ADDED
Binary file (6.15 kB). View file
 
pages/Info.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ from app_utils.frontend_utils import build_sidebar
4
+
5
+ build_sidebar()
6
+
7
+ with open("README.md", "r") as fin:
8
+ readme = fin.read().rpartition("---")[-1]
9
+
10
+ st.markdown(readme, unsafe_allow_html=True)