Possible Duplicate:
How can you profile a Python script?
What visual tools do you know, something similar to JProfiler for Java, to analyze performance of Python applications?
Possible Duplicate:
How can you profile a Python script?
What visual tools do you know, something similar to JProfiler for Java, to analyze performance of Python applications?
You can use cProfile
or profile
to profile your code.
And if you need memory profiling, you can use guppy
.
© 2022 - 2024 — McMap. All rights reserved.