Is it possible to import a python file more than once in a python script because i run a loop back to my driver file in a function by using the import command but it only works once? thanks
edit: Resolved myself thanks
|
Is it possible to import a python file more than once in a python script because i run a loop back to my driver file in a function by using the import command but it only works once? thanks edit: Resolved myself thanks |
|||||||||||
|
|
You most probably should not use import for what you are trying to do. Without further information I can only guess, but you should move the code in the module you import from the top level into a function, do the import once and than simply call the function from you loop. |
|||
|
|
|
The easiest answer is to put the code you are trying to run inside a function like this (inside your module that you are importing now):
(The module that does the importing)
|
|||
|
|
|
The import statement -- by definition -- only imports once. You can, if you want, try to use |
|||
|
|
|
While Tom Ley's answer is the correct approach, it is possible to import a module more than once, using the reload built-in.
Note that reload returns the module, allowing you to rebind it if necessary. |
|||||||||
|