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

enter image description here

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

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -