Created Wed Nov, 06 2019 at 06:25PM

I've found it useful to have ipython automatically reload an import so you can write and actively test in an interactive shell like ipdb/ipython. Hope this helps!

In [1]: %load_ext autoreload

In [2]: %autoreload 2

In [3]: from foo import bar

In [4]: some_function()
Out[4]: aba

In [5]: # open foo.py in an editor and change bar() to return zed

In [6]: some_function()
Out[6]: zed