Skip to content

Instantly share code, notes, and snippets.

View Muhammed-Abdullah-Shaikh's full-sized avatar

Muhammed Abdullah Shaikh Muhammed-Abdullah-Shaikh

  • Accolade Electronics
  • Pune
  • 20:46 (UTC +05:30)
View GitHub Profile
from timeit import default_timer as timer
class benchmark(object):
def __init__(self, msg, fmt="%0.3g"):
self.msg = msg
self.fmt = fmt
def __enter__(self):
self.start = timer()