What is the best way to profile a helper function in a python script with scalene?
With memory_profiler I can do something like (pseudo code):
from memory_profiler import profile
import module
module.helper_function = profile(module.helper_function)
import function_using_helper_function
function_using_helper_function()
Which would give me a memory profile of helper_function line by line. Using profile() in scalene or scalene_redirect_profile() will not tag the helper_function to be included in profiling output.
Try using