I define many modules in a file, and add from myFile import * to the first line of my ipython notebook so that I can use it as dependency for other parts in this notebook.
Currently my workflow is:
- modify
myFile - restart the Ipython kernel
- rerun all code in Ipython.
Does anyone know if there is a way to reload all modules in myFile without need to restart the Ipython kernel? Thanks!