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?

link|improve this question

76% accept rate
feedback

closed as exact duplicate by user225312, Adam, nmichaels, delnan, Lennart Regebro Dec 15 '10 at 17:12

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted

You can use cProfile or profile to profile your code.

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

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.