Update app.py
Browse files
app.py
CHANGED
@@ -59,8 +59,8 @@ def main():
|
|
59 |
fecha_max=datetime.strptime(fecha_max, '%Y-%m-%d %H:%M:%S')
|
60 |
|
61 |
days=(fecha_max-fecha_min).days
|
62 |
-
fecha_min=fecha_min.strftime("%d-%m-%Y %
|
63 |
-
fecha_max=fecha_max.strftime("%d-%m-%Y %
|
64 |
|
65 |
# Sidebar
|
66 |
st.sidebar.header("Acerca De")
|
@@ -83,8 +83,8 @@ def main():
|
|
83 |
"""
|
84 |
)
|
85 |
st.sidebar.markdown(f"Noticias de los últimos **{days} días**")
|
86 |
-
st.sidebar.markdown(f"Fecha más antigua: {fecha_min}")
|
87 |
-
st.sidebar.markdown(f"Fecha más reciente: {fecha_max}")
|
88 |
st.sidebar.header("Aviso Legal Sobre Uso de Datos")
|
89 |
st.sidebar.markdown(
|
90 |
"""
|
|
|
59 |
fecha_max=datetime.strptime(fecha_max, '%Y-%m-%d %H:%M:%S')
|
60 |
|
61 |
days=(fecha_max-fecha_min).days
|
62 |
+
fecha_min=fecha_min.strftime("%d-%m-%Y %I:%M %p")
|
63 |
+
fecha_max=fecha_max.strftime("%d-%m-%Y %I:%M %p")
|
64 |
|
65 |
# Sidebar
|
66 |
st.sidebar.header("Acerca De")
|
|
|
83 |
"""
|
84 |
)
|
85 |
st.sidebar.markdown(f"Noticias de los últimos **{days} días**")
|
86 |
+
st.sidebar.markdown(f"Fecha más antigua: **{fecha_min}**")
|
87 |
+
st.sidebar.markdown(f"Fecha más reciente: **{fecha_max}**")
|
88 |
st.sidebar.header("Aviso Legal Sobre Uso de Datos")
|
89 |
st.sidebar.markdown(
|
90 |
"""
|