Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
1  
Can you provide a short example of what you're trying to do, and what you expect to happen? – Greg Hewgill Nov 9 '08 at 23:42
I figured it out now thanks for your time lol – Chris Jester-Young Nov 10 '08 at 0:28
2  
@Clinton: please update the question with the answer you found, or write an answer to do so, for the benefit of others. – tzot Nov 10 '08 at 0:38

4 Answers

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.

share|improve this answer

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):

def main():
    # All the code that currently does work goes in here 
    # rather than just in the module

(The module that does the importing)

import your_module #used to do the work

your_module.main() # now does the work (and you can call it multiple times)
# some other code
your_module.main() # do the work again
share|improve this answer

The import statement -- by definition -- only imports once.

You can, if you want, try to use execfile() (or eval()) to execute a separate file more than once.

share|improve this answer

While Tom Ley's answer is the correct approach, it is possible to import a module more than once, using the reload built-in.

module.py:
print "imported!"

>>> import module
imported!
>>> reload(module)
imported!
<module 'module' from 'module.pyc'>

Note that reload returns the module, allowing you to rebind it if necessary.

share|improve this answer
Would probably replace reload(module) with module = reload(module), just for clarity. – Ali Afshar Nov 10 '08 at 11:36
1  
Also, see pyunit.sourceforge.net/notes/reloading.html. It's not as simple as it appears. – S.Lott Nov 10 '08 at 15:34
Ali: I considered that, but the rebinding isn't essential for the reload, as the original binding is affected. I hoped pointing out that it returned the module would be enough. – Matthew Trevor Nov 10 '08 at 17:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.