Skip to content

Instantly share code, notes, and snippets.

@zchee
Forked from myusuf3/profile.py
Created February 16, 2016 09:41
Show Gist options
  • Save zchee/bbb0f712b2eae0737a2d to your computer and use it in GitHub Desktop.
Save zchee/bbb0f712b2eae0737a2d 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