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