Visual profiler for Python
11–20 of 38 posts
Re: Visual profiler for Python
#12Re: Visual profiler for Python
#13This package uses cProfile, psutils, and pstats go get runtime information on your code as it's running. It's doing what valgrind does but in a much "higher-level" fashion, in pure Python. This means that it can give you more relevant information about your Python code.
Re: Visual profiler for Python
#14You can also just use Python for Visual Studio[0] if you're on Windows. [0] https://www.visualstudio.com/en-us/features/python-vs.aspx
Here's a YT video that shows off the profiler in PTVS (warning - loud cowbells) edit: forgot link - https://www.youtube.com/watch?v=K-KqkFkp55k
Re: Visual profiler for Python
#15You can also just use Python for Visual Studio[0] if you're on Windows. [0] https://www.visualstudio.com/en-us/features/python-vs.aspx
Is it just me, or running programs under PTVS slows them down by quite a bit? Even when I turn off debugging, it still seems to be slower than when I run the program from the terminal.
Re: Visual profiler for Python
#16I like the flame graphs. Reminded me about the Netflix JavaScript Talks - Debugging Node.js in Production[0] talk, 11 min in. [0]: https://www.youtube.com/watch?v=O1YP8QP9gLA
Re: Visual profiler for Python
#17Re: Visual profiler for Python
#18Re: Visual profiler for Python
#19Earlier quoted context omitted.
Is it just me, or running programs under PTVS slows them down by quite a bit? Even when I turn off debugging, it still seems to be slower than when I run the program from the terminal.
It is slower for me as well, but the debugger is excellent.
Re: Visual profiler for Python
#20I like the flame graphs. Reminded me about the Netflix JavaScript Talks - Debugging Node.js in Production[0] talk, 11 min in. [0]: https://www.youtube.com/watch?v=O1YP8QP9gLA