cha0smagick
commited on
Commit
•
6359cc8
1
Parent(s):
2dcf849
Update app.py
Browse files
app.py
CHANGED
@@ -35,13 +35,17 @@ st.markdown(
|
|
35 |
font-size: 30px;
|
36 |
}
|
37 |
.button {
|
38 |
-
display: block;
|
39 |
-
margin: 0 auto;
|
40 |
background-color: #2196F3;
|
41 |
color: white;
|
42 |
font-size: 20px;
|
43 |
padding: 10px 20px;
|
44 |
border-radius: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
46 |
.button:hover {
|
47 |
background-color: #1976D2;
|
@@ -66,7 +70,7 @@ st.markdown('<h1 class="title">Estadísticas de Criptomonedas</h1>', unsafe_allo
|
|
66 |
st.markdown('<p style="text-align: center;">Esta aplicación muestra las estadísticas de las 5 criptomonedas más populares.</p>', unsafe_allow_html=True)
|
67 |
|
68 |
# Botón para actualizar datos
|
69 |
-
if st.button("Actualizar datos", key='update_button', help="Actualiza las estadísticas de criptomonedas"
|
70 |
data = get_crypto_data()
|
71 |
df = pd.DataFrame(data)
|
72 |
|
@@ -75,4 +79,7 @@ if st.button("Actualizar datos", key='update_button', help="Actualiza las estad
|
|
75 |
st.dataframe(df[['coin', 'name', 'price', 'volume', 'algorithm', 'difficulty', 'reward_block']],
|
76 |
use_container_width=True)
|
77 |
else:
|
78 |
-
st.markdown('<p style="text-align: center;">Presiona el botón para actualizar los datos.</p>', unsafe_allow_html=True)
|
|
|
|
|
|
|
|
35 |
font-size: 30px;
|
36 |
}
|
37 |
.button {
|
|
|
|
|
38 |
background-color: #2196F3;
|
39 |
color: white;
|
40 |
font-size: 20px;
|
41 |
padding: 10px 20px;
|
42 |
border-radius: 5px;
|
43 |
+
border: none;
|
44 |
+
cursor: pointer;
|
45 |
+
display: block;
|
46 |
+
margin: 20px auto;
|
47 |
+
text-align: center;
|
48 |
+
text-decoration: none;
|
49 |
}
|
50 |
.button:hover {
|
51 |
background-color: #1976D2;
|
|
|
70 |
st.markdown('<p style="text-align: center;">Esta aplicación muestra las estadísticas de las 5 criptomonedas más populares.</p>', unsafe_allow_html=True)
|
71 |
|
72 |
# Botón para actualizar datos
|
73 |
+
if st.button("Actualizar datos", key='update_button', help="Actualiza las estadísticas de criptomonedas"):
|
74 |
data = get_crypto_data()
|
75 |
df = pd.DataFrame(data)
|
76 |
|
|
|
79 |
st.dataframe(df[['coin', 'name', 'price', 'volume', 'algorithm', 'difficulty', 'reward_block']],
|
80 |
use_container_width=True)
|
81 |
else:
|
82 |
+
st.markdown('<p style="text-align: center;">Presiona el botón para actualizar los datos.</p>', unsafe_allow_html=True)
|
83 |
+
|
84 |
+
# Añadir un botón con estilo HTML
|
85 |
+
st.markdown('<a class="button" href="javascript:void(0);" onclick="window.location.reload();">Actualizar datos</a>', unsafe_allow_html=True)
|