Skip to content

Instantly share code, notes, and snippets.

@hilam
Created July 9, 2019 12:45
Show Gist options
  • Save hilam/0ba2a2e938bf6117cd4d52d40690f089 to your computer and use it in GitHub Desktop.
Save hilam/0ba2a2e938bf6117cd4d52d40690f089 to your computer and use it in GitHub Desktop.
Profile And Stats Of Your Code
import cProfile, pstats, StringIO
pr = cProfile.Profile()
pr.enable()
# ... do something ...
pr.disable()
s = StringIO.StringIO()
ps = pstats.Stats(pr, stream=s).sort_stats(‘cumulative’)
ps.print_stats()
print s.getvalue()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment