Created
April 23, 2013 07:01
-
-
Save myusuf3/5441398 to your computer and use it in GitHub Desktop.
Simple little profiling decorator in python.
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 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