Question :
Is there any working memory profiler for Python3 [closed]
In Python 2 there’s a couple of tools but everything seems to be old and out-of-dated.
I’ve found PySizer and Heapy but everything seems to be Python2 oriented and would take a lot of effort to port.
objgraph is interesting but still not a fully working profiler
Which tool are using ?
Answer #1:
Pympler is a Python memory profiler that is compatible with both Python 2.x and Python3.x.
Answer #2:
objgraph is compatible with Python 3
Answer #3:
memprof
works for Python3:
http://jmdana.github.io/memprof/
It will log and plot the memory footprint of all your variables.