No Description

funciones.py 734B

12345678910111213141516171819202122232425262728
  1. import time
  2. from datetime import datetime, date
  3. def valida_fecha(fecha):
  4. valid = False
  5. while not valid:
  6. fechaSplit=fecha.split("-")
  7. try:
  8. d = date(int(fechaSplit[0]), int(fechaSplit[1]), int(fechaSplit[2]))
  9. valid=True
  10. except ValueError as ve:
  11. error=str(ve)
  12. # print(error)
  13. if "year" in error:
  14. fecha = "2000-"+fechaSplit[1]+"-"+fechaSplit[2]
  15. elif "must" in error: #manejar el mes
  16. mes=int(fechaSplit[1])-1
  17. # print(mes)
  18. fecha = fechaSplit[0]+"-"+str(mes)+"-"+fechaSplit[2]
  19. elif "day" in error:
  20. dia=int(fechaSplit[2])-1
  21. fecha = fechaSplit[0]+"-"+fechaSplit[1]+"-"+str(dia)
  22. unixtime = time.mktime(d.timetuple())
  23. timestamp2 = date.fromtimestamp(unixtime)
  24. return timestamp2
  25. return d