6

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?

Community
  • 1
  • 1
Seitaridis
  • 4,459
  • 9
  • 53
  • 85
  • exact duplicate of _what_, exactly? – simon Dec 30 '12 at 19:27
  • Above my question I see a section named Possible Duplicate(How can you profile a Python script? - http://stackoverflow.com/questions/582336/how-can-you-profile-a-python-script). – Seitaridis Dec 30 '12 at 22:27

1 Answers1

3

You can use cProfile or profile to profile your code.

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

amillerrhodes
  • 2,662
  • 1
  • 17
  • 19