datetime get milliseconds python code example

Example 1: python get time milliseconds

import time

def current_milli_time():
    return round(time.time() * 1000)

Example 2: python datetime milliseconds

from datetime import datetime

print(datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3])

Example 3: python datetime milliseconds

from datetime import datetime

dt_obj = datetime.strptime('20.12.2016 09:38:42,76',
                           '%d.%m.%Y %H:%M:%S,%f')
millisec = dt_obj.timestamp() * 1000

print(millisec)