One issue I always had when debugging with IPython was the need to reload all my modules each time I make a change. It would be nice if modules could be reloaded automatically each time before running a command.
The Solution:
Use autoreload, an IPython extension which automatically reloads modules before executing each line.
To use it run IPython the following commands:
Now you can easily test each part of your implementation in IPython online and with no trouble at all.