Proper way to reload a python module from the console

前端 未结 8 1913
迷失自我
迷失自我 2020-12-03 04:51

I\'m debugging from the python console and would like to reload a module every time I make a change so I don\'t have to exit the console and re-enter it. I\'m doing:

<
相关标签:
8条回答
  • 2020-12-03 04:56

    IPython can reload modules before executing every new line:

    %load_ext autoreload
    %autoreload 2
    

    Where %autoreload 2reloads "all modules (except those excluded by %aimport) every time before executing the Python code typed."

    See the docs:

    • https://ipython.org/ipython-doc/3/config/extensions/autoreload.html
    0 讨论(0)
  • 2020-12-03 04:57

    You can't use reload() in a effective way.

    Python does not provide an effective support for reloading or unloading of previously imported modules; module references makes it impractical to reload a module because references could exist in many places of your program.

    Python 3 has removed reload() feature entirely.

    0 讨论(0)
  • 2020-12-03 05:05

    As of Python 3.4 you can use importlib.reload(module)

    >>> from importlib import reload
    >>> from project.model import user
    >>> reload(user)
    
    0 讨论(0)
  • 2020-12-03 05:06

    As asked, the best you can do is

    >>> from project.models.user import *
    >>> import project # get module reference for reload
    >>> reload(project.models.user) # reload step 1
    >>> from project.models.user import * # reload step 2
    

    it would be better and cleaner if you used the user module directly, rather than doing import * (which is almost never the right way to do it). Then it would just be

    >>> from project.models import user
    >>> reload(user)
    

    This would do what you want. But, it's not very nice. If you really need to reload modules so often, I've got to ask: why?

    My suspicion (backed up by previous experience with people asking similar questions) is that you're testing your module. There are lots of ways to test a module out, and doing it by hand in the interactive interpreter is among the worst ways. Save one of your sessions to a file and use doctest, for a quick fix. Alternatively, write it out as a program and use python -i. The only really great solution, though, is using the unittest module.

    If that's not it, hopefully it's something better, not worse. There's really no good use of reload (in fact, it's removed in 3.x). It doesn't work effectively-- you might reload a module but leave leftovers from previous versions. It doesn't even work on all kinds of modules-- extension modules will not reload properly, or sometimes even break horribly, when reloaded.

    The context of using it in the interactive interpreter doesn't leave a lot of choices as to what you are doing, and what the real best solution would be. Outside it, sometimes people used reload() to implement plugins etc. This is dangerous at best, and can frequently be done differently using either exec (ah the evil territory we find ourselves in), or a segregated process.

    0 讨论(0)
  • 2020-12-03 05:08

    Unfortunately you've got to use:

    >>> from project.model import user
    >>> reload(user)
    

    I don't know off the top of my head of something which will automatically reload modules at the interactive prompt… But I don't see any reason one shouldn't exist (in fact, it wouldn't be too hard to implement, either…)

    Now, you could do something like this:

    from types import ModuleType
    import sys
    _reload_builtin = reload
    def reload(thing):
        if isinstance(thing, ModuleType):
            _reload_builtin(thing)
        elif hasattr(thing, '__module__') and thing.__module__:
            module = sys.modules[thing.__module__]
            _reload_builtin(module)
        else:
            raise TypeError, "reload() argument must be a module or have an __module__"
    
    0 讨论(0)
  • 2020-12-03 05:15
        from test_reload import add_test
    

    where test_reload is a module, and add_test is a function if you changed the function add_test, of course you need to reload this function. then you can do this:

    
        import imp
        imp.reload(test_reload)
        from test_reload import add_test
    

    this will refresh the function add_test.

    so you need to add

    imp.reload(test_reload)
    from test_reload import add_test  --add this line in your code
    
    0 讨论(0)
提交回复
热议问题