top of page

Auto Reload Python package after making changes in it.

IPython extension to reload modules before executing user code.


autoreload reloads modules automatically before entering the execution of code typed at the IPython prompt.



%load_ext autoreload

%autoreload2 from foo import some_functionsome_function()

this will automatically load the module in notebook.

26 views0 comments
bottom of page