Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Profiling memory in python 3 [duplicate]

Possible Duplicate:
Is there any working memory profiler for Python3

I'd like to know how much memory used for my objects. I used guppy for this before, but now I work with python 3, but guppy works under python 2. What can I use for memory profiling in python 3? (I makes standalone application not web-based)

like image 441
monax Avatar asked Dec 28 '11 12:12

monax


1 Answers

objgraph works in Python 3

like image 173
dbr Avatar answered Oct 09 '22 08:10

dbr