Include in your code like this:
t=Timer()
Then use it like this:
t.tick('Some optional description')
It will output the time spent between the tick and the previous tick (or inception) and the total time spent since it began tracking time. Can be placed multiple times in a long segment of code. Can be used to break out the amount of time being spent on various parts of your code so you can focus on optimizing those sections.
1 2 3 4 5 6 7 8 9 10 11 | # By Ed and Rudy Menendez
import time
class Timer(object):
def __init__(self):
self.bot = self.last_time = time.time()
print u'Starting timer at %s' % self.last_time
def tick(self, msg='Timer'):
x = time.time()
print '%s: Since inception %.3f, since last call %.3f' % (msg, x-self.bot, x - self.last_time)
self.last_time = x
|
More like this
- Form field with fixed value by roam 4 days, 20 hours ago
- New Snippet! by Antoliny0919 1 week, 4 days ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months ago
- get_object_or_none by azwdevops 6 months, 3 weeks ago
- Mask sensitive data from logger by agusmakmun 8 months, 2 weeks ago
Comments
Please login first before commenting.