ChatGPT解决这个技术问题 Extra ChatGPT

Reloading submodules in IPython

Currently I am working on a python project that contains sub modules and uses numpy/scipy. Ipython is used as interactive console. Unfortunately I am not very happy with workflow that I am using right now, I would appreciate some advice.

In IPython, the framework is loaded by a simple import command. However, it is often necessary to change code in one of the submodules of the framework. At this point a model is already loaded and I use IPython to interact with it.

Now, the framework contains many modules that depend on each other, i.e. when the framework is initially loaded the main module is importing and configuring the submodules. The changes to the code are only executed if the module is reloaded using reload(main_mod.sub_mod). This is cumbersome as I need to reload all changed modules individually using the full path. It would be very convenient if reload(main_module) would also reload all sub modules, but without reloading numpy/scipy..

Would you care to elaborate more on However, it is often necessary to change code in one of the submodules of the framework. So why it's necessary to change code? Thanks
@eat: The framework is continually being developed, so there are constant changes to the code base.

B
Brad Koch

IPython comes with some automatic reloading magic:

%load_ext autoreload
%autoreload 2

It will reload all changed modules every time before executing a new line. The way this works is slightly different than dreload. Some caveats apply, type %autoreload? to see what can go wrong.

If you want to always enable this settings, modify your IPython configuration file ~/.ipython/profile_default/ipython_config.py[1] and appending:

c.InteractiveShellApp.extensions = ['autoreload']     
c.InteractiveShellApp.exec_lines = ['%autoreload 2']

Credit to @Kos via a comment below.

[1] If you don't have the file ~/.ipython/profile_default/ipython_config.py, you need to call ipython profile create first. Or the file may be located at $IPYTHONDIR.


I have c.InteractiveShellApp.extensions = ['autoreload'] and c.InteractiveShellApp.exec_lines = ['%autoreload 2'] in my ~/.ipython/profile_default/ipython_config.py.
That might be a performance hit, though, so use with caution.
The reload is only performed when you hit Enter in Ipython shell, and not usually noticeable.
This works pretty fine when debugging packages, so what is the purpose of dreload, it seems dreload is too invasive and prints error when some packages like matplotlib are loaded.
If you use @Kos method, make sure c is defined: c = get_config()
J
Jérôme Pouiller

Module named importlib allow to access to import internals. Especially, it provide function importlib.reload():

import importlib
importlib.reload(my_module)

In contrary of %autoreload, importlib.reload() also reset global variables set in module. In most cases, it is what you want.

importlib is only available since Python 3.1. For older version, you have to use module imp.

I suggest to read documentation of importlib.reload() to get the list of all caveats of this function (recursive reload, cases where definitions of old objects remain, etc...).


Over the past two years I've googled this question multiple times, and each time your answer is the perfect one I'm looking for. Thank you.
C
Community

In IPython 0.12 (and possibly earlier), you can use this:

%load_ext autoreload
%autoreload 2

This is essentially the same as the answer by pv., except that the extension has been renamed and is now loaded using %load_ext.


For me in Jupyter lab this work and it is short enough to put into all notebooks who need it.
C
Community

For some reason, neither %autoreload, nor dreload seem to work for the situation when you import code from one notebook to another. Only plain Python reload works:

reload(module)

Based on [1].


In Python 3.4+, you can find reload in the importlib module. See this question.
This method works when adding an instance method, unlike the %autoreload technique. There's an open bug report to add support to %autoreload for this..
S
Sven Marnach

IPython offers dreload() to recursively reload all submodules. Personally, I prefer to use the %run() magic command (though it does not perform a deep reload, as pointed out by John Salvatier in the comments).


I think that (unfortunately) %run script.py only reloads the script you're calling, not the packages it imports. If you're trying to debug a package you're building, this can be a pain.
NB. dreload has been replaced in recent IPython (e.g. IPython 6.0) by deepreload.
P
Pegasus

http://shawnleezx.github.io/blog/2015/08/03/some-notes-on-ipython-startup-script/

To avoid typing those magic function again and again, they could be put in the ipython startup script(Name it with .py suffix under .ipython/profile_default/startup. All python scripts under that folder will be loaded according to lexical order), which looks like the following:

from IPython import get_ipython
ipython = get_ipython()

ipython.magic("pylab")
ipython.magic("load_ext autoreload")
ipython.magic("autoreload 2")

This also seems to work if you're running your script with e.g. %run script.pyfrom the IPython REPL
Y
Y.H Wong

How about this:

import inspect

# needs to be primed with an empty set for loaded
def recursively_reload_all_submodules(module, loaded=None):
    for name in dir(module):
        member = getattr(module, name)
        if inspect.ismodule(member) and member not in loaded:
            recursively_reload_all_submodules(member, loaded)
    loaded.add(module)
    reload(module)

import mymodule
recursively_reload_all_submodules(mymodule, set())

This should effectively reload the entire tree of modules and submodules you give it. You can also put this function in your .ipythonrc (I think) so it is loaded every time you start the interpreter.


That looks good, however, it might be that it is not covering modules or members of modules that are imported using from ... import ... or import ... as. At least that's giving me often some trouble when working interactively on the terminal. I've moved on to use stored macros in IPython that do the necessary imports and setups to start working in a predefined state.
It actually does cover from ... import ... and import ... as as long as the thing you imported is a module. The only thing that it doesn't cover is modules in a package that weren't loaded from it's __init__.py file. For packages, you can probably check if the module's __path__ attribute is a directory. If it is, traverse it and recursively import all the modules you could find. I didn't write this part because the author has not asked for a solution for packages.
Indeed this looks good. I thought about this possibility, at the same I would expect that there would be some built in functionality, i.e. based on this. However, it was not clear to me how to use this. After some digging that should have occurred before I posted the original question, I found this extension.
Also you can use pkgutil to get all submodules in a package, even if the package does not import the submodules into the top module. stackoverflow.com/a/1707786/1243926
you also have to do:for module in sys.modules:
r
ryanjdillon

My standard practice for reloading is to combine both methods following first opening of IPython:

from IPython.lib.deepreload import reload
%load_ext autoreload
%autoreload 2

Loading modules before doing this will cause them not to be reloaded, even with a manual reload(module_name). I still, very rarely, get inexplicable problems with class methods not reloading that I've not yet looked into.


u
user3897315

Prior to your module imports include these lines, where the first tests whether or not the autoreload extension has already been loaded:

if 'autoreload' not in get_ipython().extension_manager.loaded:
    %load_ext autoreload
%autoreload 2

import sys
    .
    .
    .

L
Leo

Another option:

$ cat << EOF > ~/.ipython/profile_default/startup/50-autoreload.ipy
%load_ext autoreload
%autoreload 2
EOF

Verified on ipython and ipython3 v5.1.0 on Ubuntu 14.04.


r
rdmolony

I hate to add yet another answer to a long thread, but I found a solution that enables recursive reloading of submodules on %run() that others might find useful (I have anyway)

del the submodule you wish to reload on run from sys.modules in iPython:

In[1]: from sys import modules
In[2]: del modules["mymodule.mysubmodule"] # tab completion can be used like mymodule.<tab>!

Now your script will recursively reload this submodule:

In[3]: %run myscript.py

H
Hubert Grzeskowiak

Note that the above mentioned autoreload only works in IntelliJ if you manually save the changed file (e.g. using ctrl+s or cmd+s). It doesn't seem to work with auto-saving.


I confirm this is the case also for PyCharm.
t
thanks_in_advance

On Jupyter Notebooks on Anaconda, doing this:

%load_ext autoreload
%autoreload 2

produced the message:

The autoreload extension is already loaded. To reload it, use: %reload_ext autoreload

It looks like it's preferable to do:

%reload_ext autoreload
%autoreload 2

Version information:

The version of the notebook server is 5.0.0 and is running on: Python 3.6.2 |Anaconda, Inc.| (default, Sep 20 2017, 13:35:58) [MSC v.1900 32 bit (Intel)]


a
aoeu256

Any subobjects will not be reloaded by this, I believe you have to use IPython's deepreload for that.