Skip to content

Instantly share code, notes, and snippets.

@myusuf3
Created April 23, 2013 07:01
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save myusuf3/5441398 to your computer and use it in GitHub Desktop.
Save myusuf3/5441398 to your computer and use it in GitHub Desktop.
Simple little profiling decorator in python.
import cProfile
def profile_this(fn):
def profiled_fn(*args, **kwargs):
# name for profile dump
fpath = fn.__name__ + '.profile'
prof = cProfile.Profile()
ret = prof.runcall(fn, *args, **kwargs)
prof.dump_stats(fpath)
return ret
return profiled_fn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment