Last active
August 12, 2024 22:09
-
-
Save cwindolf/66fe28e1b0ef183ee0c0b8f222a9f4ee to your computer and use it in GitHub Desktop.
Wow, what a cool original idea
This file contains 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 __init__(self, name="timer", format="{:0.1f}"): | |
self.name = name | |
self.format = format | |
def __enter__(self): | |
self.start = time.perf_counter() | |
return self | |
def __exit__(self, *args): | |
self.t = time.perf_counter() - self.start | |
t = self.format.format(self.t) | |
print(self.name, "took", t, "s") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment