tags:

views:

110

answers:

2

Is there a way to have iPython automatically reload all changed code? Either before each line is executed in the shell or failing that when it is specifically requested to. I'm doing a lot of exploratory programming using iPython and SciPy and it's quite a pain to have to manually reload each module whenever I change it.

A: 

There is an extension for that, but I have no usage experience yet:

http://ipython.scipy.org/ipython/ipython/attachment/ticket/154/ipy_autoreload.py

The MYYN
+1  A: 

Here it's implemented as an extension

http://projects.scipy.org/ipython/ipython/ticket/154

Facundo