Skip to content

Instantly share code, notes, and snippets.

@cwindolf
Last active August 12, 2024 22:09
Show Gist options
  • Save cwindolf/66fe28e1b0ef183ee0c0b8f222a9f4ee to your computer and use it in GitHub Desktop.
Save cwindolf/66fe28e1b0ef183ee0c0b8f222a9f4ee to your computer and use it in GitHub Desktop.
Wow, what a cool original idea
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