How to create a epoch timestamp in milliseconds each day using python -
i trying create small epoch function end giving me resulting time stamp of following format :
1501149934.372957
i trying follows :
def create_slack_timestamp(): start_time = '4:00' end_time = '5:00' date=datetime.datetime.now().strftime("%y%m%d") create_epoch = date + start_time
i intersted in generating epoch time @ 4:00pm , 5:00pm . how can achieve ?
Comments
Post a Comment