-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.py
More file actions
52 lines (38 loc) · 1.5 KB
/
Home.py
File metadata and controls
52 lines (38 loc) · 1.5 KB
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
import streamlit as st
import pandas as pd
st.set_page_config(layout="wide")
col1, col2 = st.columns(2)
with col1:
st.image("images/Photo.png", width=300)
with col2:
st.title("Claudio Ledesma")
content = """
¡Hola! Mi nombre es Claudio y soy estudiante de Ingeniería en Sistemas de Información.
Me encuentro en formación constante en el área de desarrollo de software, con especial interés
en la programación con Python, el desarrollo web y la integración de APIs.
Esta página tiene como objetivo presentar mis proyectos, habilidades técnicas y
formas de contacto para futuras oportunidades laborales en el ámbito IT.
"""
st.info(content)
st.subheader("Tecnologías que utilizo")
col1, col2, col3 = st.columns(3)
with col1:
st.markdown("🐍 **Python**")
st.markdown("🗄️ **SQL**")
st.markdown("🗃️ **Git / GitHub**")
with col2:
st.markdown("🧱 **HTML básico**")
st.markdown("📡 **APIs**")
st.markdown("🌐 **Streamlit**")
with col3:
st.markdown("📊 **Análisis de datos básico**")
st.markdown("🔀 **Automatización de tareas**")
st.markdown("🛠️ **Trabajo en equipo y resolución de problemas**")
col3, col4, col5 = st.columns([0.5, 1, 0.5])
df = pd.read_csv("data.csv", sep=";")
with col4:
for index, row in df[:9].iterrows():
st.header(row["title"])
st.write(row["description"])
st.image("images/" + row["image"])
st.write(f"[Source Code]({row["url"]})")