Skip to content

Instantly share code, notes, and snippets.

@amagee
Created December 22, 2016 00:12
Show Gist options
  • Save amagee/c8bdb611609774962cb321c7e3b8d1e8 to your computer and use it in GitHub Desktop.
Save amagee/c8bdb611609774962cb321c7e3b8d1e8 to your computer and use it in GitHub Desktop.
IPython auto-reload
# https://ipython.org/ipython-doc/3/config/extensions/autoreload.html
>>> %load_ext autoreload
>>> %autoreload 2
>>> from foo import some_function
>>> some_function()
>>> from foo import some_function
>>> some_function()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment