I tried to convert the string "01/03/2019 0:10:00" to a timestamp and the result I got was 1551395400 which is incorrect. This timestamp is equivalent to 28/02/2019 11:00:00.
I don´t understand why I am getting this issue, yesterday on the same computer the conversion was correct.
The code:
date ="01/03/2019 0:10:00"
time.mktime(datetime.datetime.strptime(date, "%d/%m/%Y %H:%M:%S).timetuple())