Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,17 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
|
|
|
|
|
4 |
|
5 |
st.text ('Team members: \n 1. Vasily S. \n 2. Anna F. \n 3. Viktoria K. \n 4. Ivan N. \n 5. Ilvir Kh.')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
|
4 |
+
|
5 |
+
st.title("# NLP Project by Team Name 🎈")
|
6 |
|
7 |
st.text ('Team members: \n 1. Vasily S. \n 2. Anna F. \n 3. Viktoria K. \n 4. Ivan N. \n 5. Ilvir Kh.')
|
8 |
+
|
9 |
+
# Настройка боковой панели
|
10 |
+
st.sidebar.title("About")
|
11 |
+
st.sidebar.info(
|
12 |
+
"""
|
13 |
+
This app is Open Source dashboard.
|
14 |
+
"""
|
15 |
+
)
|
16 |
+
st.sidebar.info("Feel free to collaborate and comment on the work. The github link can be found "
|
17 |
+
"[here](https://github.com/yuliianikolaenko/COVID_dashboard_proglib).")
|