Since IPython Notebook does not reload the file after I modified my module, I am trying to reload it. There was a post on how to do similar things, but my problem is when the .py file is in a subfolder, it does not work.
My original import works like this:
from myutils.MyClassFile import MyClass
while trying to reload:
reload(myutils.MyClassFile)
from myutils.MyClassFile import MyClass
I got the error:
name 'myutils' is not defined
Any suggestion on how to achive this.