Possible Duplicate:
Python: Circular (or cyclic) imports
Circular dependency in Python

I have a Python package featuring two modules that import each other. That is, in module A we have the line

from B import b

and in module B we have the line

from A import a

When I try to load the package containing these modules I get the following error

ImportError: cannot import name a

Is there a way to avoid this error (without combining the two modules into one big module AB)?

link|improve this question
Yes, you're right. I missed that one when I was searching previously answered questions. Thanks – bandini Feb 17 at 16:38
feedback

closed as exact duplicate by larsmans, bernie, Sven Marnach, Gerrat, talonmies Feb 17 at 16:37

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

  1. Split them up into even more modules -- for example you can factor out a into a module of its own that both A and B depend on.

  2. Use import A and import B instead of the from ... variants -- this will make the imports succeed even if the name you want to import has not yet been bound at the time of the import.

  3. Use function level imports at the specific places you need the symbols from the other module. (I don't like this option too much, but it works.)

link|improve this answer
feedback

You can't do that because you have a circular reference. Create a new module and import both there:

from B import b
from A import a
link|improve this answer
feedback

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