snakeviz

Web-based viewer for Python profiler output with interactive visualization

brewmacoslinux
Try with needOr install directly
Source

About

Web-based viewer for Python profiler output

Commands

snakeviz

Examples

Profile a Python script and view results in browser$ python -m cProfile -o output.prof myscript.py && snakeviz output.prof
View an existing profile file on a specific port$ snakeviz -p 8080 output.prof
Profile a script with profiler and serve visualization$ python -m cProfile -o stats.prof script.py && snakeviz stats.prof