Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get the current time in milliseconds in Python?

I'm hitting a roadblock with this; I've done it before but I forgot how. Maybe it's the whole "waking up at 4 AM this morning" thing. Can anyone help me out?

share|improve this question
10  
import time; ms = time.time()*1000.0 – samplebias May 13 '11 at 22:07

5 Answers

up vote 35 down vote accepted

For what I needed, here's what I did, based on @samplebias' comment above:

import time
millis = int(round(time.time() * 1000))
print millis

Quick'n'easy. Thanks all, sorry for the brain fart.

share|improve this answer
1  
This may not give the correct answer. According to the docs, "Note that even though the time is always returned as a floating point number, not all systems provide time with a better precision than 1 second" – Jason Nov 2 '12 at 17:21
2  
"Not all systems provide time with a better precision than one second," really? I kind of find that amazing; having a precision of a second rather than a millisecond or even a nanosecond is hard to imagine in this day and age. Sure, it may be possible, but probably only on strange archaic embedded systems. – TK Kocheran Nov 2 '12 at 17:25

another solution is the function you can embed into your own utils.py

import time as time_ #make sure we don't override time
def millis():
    return int(round(time_.time() * 1000))
share|improve this answer

time.time() may only give resolution to the second, the preferred approach for milliseconds is datetime

from datetime import datetime
dt = datetime.now()
dt.microsecond
share|improve this answer
not quite useful - this only gives you the microseconds within the dt's second. see stackoverflow.com/a/1905423/74632 – Boris Chervenkov Nov 5 '12 at 0:23
+1 because this is the official way to get a reliable timestamp from the system. – tuner Feb 20 at 10:54

If you want a simple method in your code that returns the milliseconds with datetime:

from datetime import datetime
from datetime import timedelta

start_time = datetime.now()

# returns the elapsed milliseconds since the start of the program
def millis():
   dt = datetime.now() - start_time
   ms = (dt.days * 24 * 60 * 60 + dt.seconds) * 1000 + dt.microseconds / 1000.0
   return ms
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.