- Author:
- menendez
- Posted:
- June 4, 2008
- Language:
- Python
- Version:
- .96
- Tags:
- time high-performance profiling timer optimize
- Score:
- 2 (after 2 ratings)
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
- Serialize a model instance by chriswedgwood 1 week, 1 day ago
- Automatically setup raw_id_fields ForeignKey & OneToOneField by agusmakmun 9 months, 1 week ago
- Crispy Form by sourabhsinha396 10 months ago
- ReadOnlySelect by mkoistinen 10 months, 2 weeks ago
- Verify events sent to your webhook endpoints by santos22 11 months, 2 weeks ago
Comments
Please login first before commenting.