I am trying to debug a memory leak in a module using Scalene.
Unfortunately, it appears that I can only run scalene script.py
while I need to be able to specify the module to correctly run the application with python -m mymodule
, which I can't seem to do with scalene.
Is there a way to overcome this? Thank you in advance
You can use
runpy.run_module()
to create a wrapper around your module, which you can then profile!wrapper.py
might contain:and then you can run
scalene wrapper.py
!The
run_name
argument is needed in order to "trick" theif __name__ == '__main__'
clause into executing, if you have one.