Skip to content

Instantly share code, notes, and snippets.

@cronin101
Last active December 25, 2015 01:09
Show Gist options
  • Select an option

  • Save cronin101/6892759 to your computer and use it in GitHub Desktop.

Select an option

Save cronin101/6892759 to your computer and use it in GitHub Desktop.
How2profile
#!/usr/bin/env sh
python -m cProfile -o $1.prof $1.py
gprof2dot -f pstats -o $1.dot $1.prof
dot -o $1.png -Tpng $1.dot
echo "Open $1.png to view."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment