forked from pavel242242/digital-resume-template-streamlit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathempty_app.py
52 lines (44 loc) · 1.52 KB
/
empty_app.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
40
41
42
43
44
45
46
47
48
49
50
51
52
from pathlib import Path
import time
import streamlit as st
from PIL import Image
# --- GENERAL SETTINGS ---
PAGE_TITLE = "Digital CV | Pavel 242"
PAGE_ICON = ":wave: :sunglasses:"
NAME = "Pavel Chocholous"
DESCRIPTION = """
Senior Data Analyst"""
st.set_page_config(page_title="Nadpis stránky", page_icon=":sunglasses:")
with st.sidebar:
my_radio = st.radio("Wow effect radio button", {
"Item 1": "Item 1 long description",
"Item 2": "Item 2 long description"
})
# --- HERO SECTION ---
col1, col2 = st.columns(2, gap="small")
with col1:
st.title("Nějaký text")
st.write("Nějaký další text")
with col2:
st.title(NAME)
st.write(DESCRIPTION)
if my_radio == "Item 1":
# --- EXPERIENCE & QUALIFICATIONS ---
st.write('\n')
st.subheader("Experience & Qulifications")
st.write("""
- ✔️ 7 Years expereince extracting actionable insights from data
- ✔️ Strong hands on experience and knowledge in Python and Excel
- ✔️ Good understanding of statistical principles and their respective applications
- ✔️ Excellent team-player and displaying strong sense of initiative on tasks
""")
if my_radio == "Item 2":
# --- SKILLS ---
st.write('\n')
st.subheader("Hard Skills")
st.write("""
- 👩💻 Programming: Python (Scikit-learn, Pandas), SQL, VBA
- 📊 Data Visulization: PowerBi, MS Excel, Plotly
- 📚 Modeling: Logistic regression, linear regression, decition trees
- 🗄️ Databases: Postgres, MongoDB, MySQL
""")