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?
|
For what I needed, here's what I did, based on @samplebias' comment above:
Quick'n'easy. Thanks all, sorry for the brain fart. |
|||||||||
|
|
These posts may help you: |
|||
|
|
|
another solution is the function you can embed into your own utils.py
|
||||
|
|
|
time.time() may only give resolution to the second, the preferred approach for milliseconds is datetime
|
|||||
|
|
If you want a simple method in your code that returns the milliseconds with datetime:
|
||||
|
|
import time; ms = time.time()*1000.0– samplebias May 13 '11 at 22:07