With the Time module in python is it possible to measure elapsed time? If so, how do I do that?
I need to do this so that if the cursor has been in a widget for a certain duration an event happens.
|
|
You can also write simple decorator to simplify measurement of execution time of various functions:
Usage:
You can profile more then one function simultaneously. Then to print measurements just call the print_prof_data(): |
||||
|
|
time.time() will do the job.
You may want to look at this question, but I don't think it will be necessary. |
|||
|
|