Thanks to all contributors!
New features
Render visualizations from file
vprof is able to save profile stats to file and render visualizations from previously saved file now.
sh
vprof -c cmh src.py --output-file profile.json
writes profile to file and
sh
vprof --input-file profile.json
renders visualizations from previously saved file.
Please note that stats rendering is supported for the same version only (e.g.
vprof 0.35 won't render stats from 0.34).
Flame graph uses statistical profiler
Flame graph now uses statistical profiler instead of cProfile.
"Profiler" tab
New "Profiler" tab shows how long and how long often various parts of the programs are executed.
![profile](http://i.imgur.com/mU5LkEt.png)
Other changes
`-s` flag has been removed from CLI.
Please, check `vprof -h' or README.md for more info.