I have a situation where there two related large python classes and hence i have put them in separate files. Let say classes are Cobra and Rat.

Now need to call methods of Rat from methods of Cobra and vice versa. For this i need to import Cobra in Rat.py and Rat in Cobra.py

This creates an import loop and gives an error. Cant import Cobra inside Cobra.

How to fix this??

import Rat
Class Cobra:
...
def check_prey(self, rat ):
    Some logic rat.foo()



import Cobra
class Rat
...
def check_predator(self, snake ):
   some_logic ..
   snake.foo()
link|improve this question

73% accept rate
1  
None of the code you show exhibits that problem. – Ignacio Vazquez-Abrams Aug 26 '11 at 2:48
feedback

1 Answer

up vote 3 down vote accepted

If you don't use Cobra in the class definition of Rat or vice versa i.e. only used inside methods, then you can actually move the import statement to the bottom of the file, by which time the class definition would already exist.

Class Cobra:
...
def check_prey(self, rat ):
    Some logic rat.foo()

import Rat


import Cobra
class Rat
...
def check_predator(self, snake ):
   some_logic ..
   snake.foo()

Or you can also limit the scope of the import

Class Cobra:
...
def check_prey(self, rat ):
    import Rat
    Some logic rat.foo()

import Cobra
class Rat
...
def check_predator(self, snake ):
   some_logic ..
   snake.foo()

If you don't use the Rat and Cobra class names directly, then you don't even need the import statements at all, as long as the properties and functions exist in the rat or stake instances, python doesn't care what class they're from.

In general, there is no full proof way of avoiding import loops, the best you can do is refactor your code and do some of the things I mentioned above.

link|improve this answer
Thanks A lot for the answer.. Sounds promising.. will check and get back.. – Tiwari Aug 26 '11 at 2:57
feedback

Your Answer

 
or
required, but never shown

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