Skip to content Skip to sidebar Skip to footer

Python Module Memory Usage

I have this python module that imports many other modules. On monitoring the vm usage of the module, I see the usage continuously growing. I tried to go through the whole code and

Solution 1:

Check out How do I profile memory usage in Python? and Which Python memory profiler is recommended?. You need to dig into the docs, but those tools will allow you to breakdown memory usage by module.


Post a Comment for "Python Module Memory Usage"