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.

Python imports. Again...

I have this file structure:

[test]
    start.py (from scripts import main)
    [scripts]
        __init__.py (empty)
        main.py (from . import install)
        install.py (from scripts import main # or # from . import main)

I get import error:

vic@wic:~/projects/test$ python3 start.py 
Traceback (most recent call last):
  File "start.py", line 2, in <module>
    from scripts import main
  File "/home/vic/projects/test/scripts/main.py", line 1, in <module>
    from . import install
  File "/home/vic/projects/test/scripts/install.py", line 1, in <module>
    from scripts import main
ImportError: cannot import name main
vic@wic:~/projects/test$

I don't understand: first time from scripts import main worked, and second time the same code gives ImportError: cannot import name main

What is going on?

UPDATE:

My question is not about circular imports. I am confused by the fact that exactly the same code from scripts import main first time works ok and then second time fails.

I guess there is some internal import mechanism which i don't understand.

First time a statement imports a module, second time exactly the same code tries to import a name from a module. How this works?

share|improve this question
I'm not an expert about this topic and it's to less for a good answer, but this link might help you. – sfx Aug 15 '12 at 17:59

3 Answers

up vote 3 down vote accepted

You created a circular import. You can't do that. Avoid importing main from install.

What is happening is that a module, while being imported, is incomplete until the whole top level has been executed. If during that execution it imports another module that (directly or indirectly) tries to import the original module again, this will fail. The original module was not yet done importing yet.

In other words, you are creating a circular graph:

start -> scripts.main -> scripts.install
              ^                |
              |                |
               ----------------

You need to re-arrange your code to not need to import from main from within your scripts package.

See What are the “best practices” for using import in a module? for some tips on how to handle this.

share|improve this answer
I want the second time to work exactly as it worked the first time, i.e. import scripts.main and assign it to name main – warwaruk Aug 15 '12 at 17:54
>The original module was not yet done importing yet.< Nevertheless, it already is in sys.modules, though its importing was not finished – warwaruk Aug 15 '12 at 17:56
Yes, but it is not complete. Python cannot guarantee that the objects you are trying to import will actually be there or properly defined. – Martijn Pieters Aug 15 '12 at 17:58
I understand the issue with circular import, and i won't argue about it. What confuses me is that the same code from scripts import main first time is ok and then second time fails – warwaruk Aug 15 '12 at 18:02
2  
@warwaruk, the first from scripts import main doesn't work. It fails, with an ImportError. It fails at the point when the circularity is first recognized, when the second from scripts import main occurs. I think you're being confused by the fact the traceback shows both imports, but that doesn't mean that it made it successfully through the first one: it's in the process of trying to do that first one that it executes the lines shown and fails. – DSM Aug 15 '12 at 18:25
show 4 more comments

main imports install and install imports main:

  • from scripts import main in start.py leads to
  • from . import install in main.py leads to
  • from scripts import main in install.py -- circular import

To solve the circular import either combine main and install into a single module or create the 3rd module that both modules can import.

share|improve this answer
Please, see my update – warwaruk Aug 15 '12 at 18:18
@warwaruk: I've spelled out the sequence explicitly. from scripts import main doesn't work the first time because it never completes in the first place. – J.F. Sebastian Aug 15 '12 at 18:28

This should work:

start.py:

from scripts import main

scripts/main.py:

import install

scripts/install.py:

import main
share|improve this answer
This is not the same situation as mine. I try to import a module from a package, not a name from another module – warwaruk Aug 15 '12 at 18:06
updated answer to solve your problem – muzhig Aug 16 '12 at 6:11

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.