开发者

hot reloading / swapping with Python [duplicate]

This question already has answers here: How do I unload (reload) a Python module? (22 answers) Closed 9 years ago.

I want code changes to take effec开发者_JS百科t immediately during development. How can I detect changed files and reload them in the running Python (2.7) application?

Edit:

After reading the pages linked by 'Ivo van der Wijk', I think it would be best to restart the web application when code changes - like Django does. So the actual question is: How to monitor file modifications?


I wanted the same effect for some of my Python scripts, so I went on and made the script SourceChangeMonitor.py. You can find it with instructions here. If you just want the script, here is a direct link


This question has been asked a number of times

You can use reload(module) for this, but beware of nasty side effects. For example, existing code will be based on the original code, it will not magically get new attributes or baseclasses added.


This does not make sense for most applications because you will get side effects by using reload. Plus the time you spend on the code that detects changes and reloads all modules could have been spent on just restarting the application. It's very complicated if you import lots of modules or have a project that contains many sub-modules.

In some cases, it's a good idea though. The Django web framework provides a development server (manage.py runserver) that automatically reloads changed modules. Take a look at the django.utils.autoreload - it tests all Python files for modifications using the modification time of the files. As said before, this is only a good idea for some applications. Web applications are somewhat stateless and thus can be reloaded with few to no side effects.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜