Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -59,6 +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 |
|
63 |
# Sidebar
|
64 |
st.sidebar.header("Acerca De")
|
@@ -81,7 +83,7 @@ def main():
|
|
81 |
"""
|
82 |
)
|
83 |
st.sidebar.markdown(f"Noticias de los últimos **{days} días**")
|
84 |
-
st.sidebar.markdown(f"{fecha_min
|
85 |
st.sidebar.header("Aviso Legal Sobre Uso de Datos")
|
86 |
st.sidebar.markdown(
|
87 |
"""
|
|
|
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 %H:%M %p")
|
63 |
+
fecha_max=fecha_max.strftime("%d-%m-%Y %H:%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_min} al {fecha_max}")
|
87 |
st.sidebar.header("Aviso Legal Sobre Uso de Datos")
|
88 |
st.sidebar.markdown(
|
89 |
"""
|