Upload 2 files
Browse files- pages/.DS_Store +0 -0
- 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)
|