Searched refs:human_time (Results 1 – 1 of 1) sorted by relevance
2024 def human_to_epoch_time(human_time): argument2033 if "/" in human_time:2034 human_time.replace("/", "-")2037 if "." in human_time:2038 epoch_time = datetime.strptime(human_time, "%Y-%m-%d %H:%M:%S.%f")2040 epoch_time = datetime.strptime(human_time, "%Y-%m-%d %H:%M:%S")