Created
July 25, 2014 18:32
-
-
Save thelahunginjeet/c67ad3c3cb083d356d94 to your computer and use it in GitHub Desktop.
simple python timer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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