Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to "reimport" module to python then code be changed after import

I have a foo.py

def foo():     print "test" 

In IPython I use:

In [6]:  import foo In [7]:  foo.foo() test 

Then I changed the foo() to:

def foo():     print "test changed" 

In IPython, the result for invoking is still test:

In [10]:  import foo In [11]:  foo.foo() test 

Then I use:

In [15]: del foo In [16]:  import foo In [17]:  foo.foo() test 

I delete the foo.pyc in same folder foo.py exists, but still no luck.

May I know how to reimport the updated code in runtime?

like image 465
user478514 Avatar asked Nov 06 '10 02:11

user478514


People also ask

What happens when a Python module is imported?

When a module is first imported, Python searches for the module and if found, it creates a module object 1, initializing it. If the named module cannot be found, a ModuleNotFoundError is raised. Python implements various strategies to search for the named module when the import machinery is invoked.

How do I reimport a file in Python?

1 Answer. You can re-import a module in python, by using the importlib and its function reload.

Can you Unimport a module Python?

You can use https://pypi.org/project/unimport/, it can find and remove unused imports for you.


1 Answers

For Python 2.x

reload(foo) 

For Python 3.x

import importlib import foo #import the module here, so that it can be reloaded. importlib.reload(foo) 
like image 164
John La Rooy Avatar answered Sep 24 '22 17:09

John La Rooy