How do I unload (reload) a Python module?

后端 未结 20 2357
轮回少年
轮回少年 2020-11-21 05:20

I have a long-running Python server and would like to be able to upgrade a service without restarting the server. What\'s the best way do do this?

if foo.py          


        
20条回答
  •  无人共我
    2020-11-21 05:39

    Another way could be to import the module in a function. This way when the function completes the module gets garbage collected.

提交回复
热议问题