Skip to content

Instantly share code, notes, and snippets.

@thelahunginjeet
Created July 25, 2014 18:32
Show Gist options
  • Save thelahunginjeet/c67ad3c3cb083d356d94 to your computer and use it in GitHub Desktop.
Save thelahunginjeet/c67ad3c3cb083d356d94 to your computer and use it in GitHub Desktop.
simple python timer
import time
class Timer:
def __enter__(self):
self.start = time.clock()
return self
def __exit__(self,*args):
self.end = time.clock()
self.interval = self.end - self.start
# usage
if __name__ == '__main__':
with Timer() as t:
# do stuff
print('Stuff took %f seconds' % t.interval)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment