forked from DataScientest-Studio/jul23_bds_radio_poumons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
39 lines (31 loc) · 840 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""
Config file for Streamlit App
"""
from streamlit_app.member import Member
import streamlit as st
TITLE = "CoviNet - Détection de la COVID-19 grâce au deep learning"
TEAM_MEMBERS = [
Member(
name="Hassan Burke",
linkedin_url="#",
github_url="#",
),
Member(
name="Juliette Greco",
linkedin_url="#",
github_url="#",
),
Member(
name="Matthieu Khairallah",
linkedin_url="#",
github_url="#",
),
Member(
name="Nathan Lancman",
linkedin_url="#",
github_url="#",
),
]
PROMOTION = "Promotion Bootcamp Data Scientist - July 2023"
def st_markdown(string, tag='h1', text_align='center'):
return st.markdown(f"<{tag} style='text-align: {text_align}; color: black;'>{string}</{tag}>", unsafe_allow_html=True)