恢复/撤消/重做/刷新,交互式 python 会话中的“导入”

发布于 2024-11-28 07:04:45 字数 385 浏览 1 评论 0原文

Possible Duplicate:
How do I unload (reload) a Python module?

Would it be possible to 'refresh' an imported module in python? The use case: interactively improving the module; up til now, I always completely restart the interactive session to reload my updated sources.

Is there a better way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福还没到 2024-12-05 07:04:45

假设名称空间中已经存在名为 foo 的模块,但您在源代码中进行了一些更改并且希望导入新代码,请使用:

reload(foo)

这里有一个问题:如果您使用了 < code>from foo import bar 并且您已在函数 bar 中进行了后续更改,那么重新加载将不起作用。对于这些情况,您可能更喜欢使用 import foo 并调用 foo.bar(),以便您可以重新加载以使更改生效立即地。

如果您经常在这样的交互式会话中工作,那么您可能会对使用 ipython 感兴趣并在您的 ipy_user_conf.py 文件中添加以下行:

# For autoreloading of modules (%autoreload, %aimport)    
import ipy_autoreload

Supposing a module named foo is already present in the namespace, but you have made some changes in source and you want the new code to be imported, use:

reload(foo)

There is a gotcha here: if you have used from foo import bar and you have made subsequent changes in your function bar, then the reload will not work for you. For these cases, you might prefer too use import foo and call foo.bar() so that you can reload for your changes to take effect immediately.

If you are often working in interactive session like this, then perhaps you will be interested to use ipython and add the following lines in your ipy_user_conf.py file:

# For autoreloading of modules (%autoreload, %aimport)    
import ipy_autoreload
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文