Lisibonny commited on
Commit
cdb1a5c
1 Parent(s): ea44542

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -52,9 +52,11 @@ def main():
52
  st.header('El Repartidor Dominicano')
53
 
54
  df, fecha_min, fecha_max=cargar_articulos()
 
 
55
 
56
- fecha_min=datetime.strptime(fecha_min[:19], '%Y-%m-%d %H:%M:%S')
57
- fecha_max=datetime.strptime(fecha_max[:19], '%Y-%m-%d %H:%M:%S')
58
 
59
  days=(fecha_max-fecha_min).days
60
 
@@ -78,7 +80,7 @@ def main():
78
 
79
  """
80
  )
81
- st.sidebar.markdown(f"Articulos de los últimos **{days} días** ({fecha_min} - {fecha_max}=")
82
 
83
  st.sidebar.header("Aviso Legal Sobre Uso de Datos")
84
  st.sidebar.markdown(
 
52
  st.header('El Repartidor Dominicano')
53
 
54
  df, fecha_min, fecha_max=cargar_articulos()
55
+ fecha_min=fecha_min[:19]
56
+ fecha_max=fecha_max[:19]
57
 
58
+ fecha_min=datetime.strptime(fecha_min, '%Y-%m-%d %H:%M:%S')
59
+ fecha_max=datetime.strptime(fecha_max, '%Y-%m-%d %H:%M:%S')
60
 
61
  days=(fecha_max-fecha_min).days
62
 
 
80
 
81
  """
82
  )
83
+ st.sidebar.markdown(f"Noticias de los últimos **{days} días**\n({fecha_min} - {fecha_max})")
84
 
85
  st.sidebar.header("Aviso Legal Sobre Uso de Datos")
86
  st.sidebar.markdown(