Python profiling performance tool

Possible duplicate:
How to create a python profile script?

What visual tools do you know, something similar to JProfiler for Java, for analyzing the performance of Python applications?

+4
source share
1 answer

You can use cProfile or profile to profile your code.

And if you need memory profiling, you can use guppy .

+3
source

Source: https://habr.com/ru/post/1332243/


All Articles