Last active
December 30, 2018 12:44
-
-
Save mcouthon/ae810d05722829c7116efa75253ef6e1 to your computer and use it in GitHub Desktop.
Revisions
-
mcouthon revised this gist
Dec 30, 2018 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -6,4 +6,7 @@ profile() { python -m cProfile -o $tmp_file "$@" snake $tmp_file rm $tmp_file } # To use, simply run: # >>> profile PATH_TO_SCRIPT.py ARG1 ARG2 ARG3... -
mcouthon created this gist
Dec 30, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ # This is the path to snakeviz executable in a dedicated venv alias snake='/Users/pavel/dev/venvs/snakeviz/bin/snakeviz' profile() { tmp_file=$(mktemp) python -m cProfile -o $tmp_file "$@" snake $tmp_file rm $tmp_file }