Hello,
is it possible to autoreload python modules (my own files.py) that I have recently modified without having to restart julia? I am using PyCall but I can change to PythonCall if needed.
This is what I am doing:
pushfirst!(PyVector(pyimport("sys")."path"), "")
stream = pyimport("stream")
potentials = pyimport("potential_classes")
I would like to know the analogue of the Python notebook commands:
%load_ext autoreload
%autoreload 2
I tried with Revise.jl but didn’t worked for this case.
Thank you very much!