def datetime_to_unixtime(datetime): return int(calendar.timegm(datetime.timetuple())) # Converts date string to unix UTC time