Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pythonic way to resolve circular import statements?

I just inherited some code which makes me uneasy: There is a testing library, full of classes corresponding to webpages on our site, and each webpage class has methods to automate the functionality on that page.

There are methods to click the link between pages, which returns the class of the linked page. Here's a simplified example:

File homePageLib.py:

class HomePage(object):     def clickCalendarLink(self):         # Click page2 link which navigates browswer to page2         print "Click Calendar link"         # Then returns the page2 object         from calendarLib import CalendarPage         return CalendarPage() 

File calendarLib.py:

class CalendarPage(object):     def clickHomePageLink(self):         # Click page1 link which navigates browswer to page1         print "Click Home Page link"         # Then return the page2 object         from homePageLib import HomePage         return HomePage() 

This then allows the script file to click on pages and get the object as a return value from that method, meaning the script author won't have to keep instantiating new pages as they navigate around the site. (I feel like this is an odd design, but I can't exactly put my finger on why, other than that it seems strange to have a method named 'clickSomeLink' and return an object of the resulting page.)

The following script illustrates how a script would navigate around the site: (I inserted print page to show how the page object changes)

Script File:

from homePageLib import HomePage  page = HomePage()     print page page = page.clickCalendarLink() print page page = page.clickHomePageLink() print page 

which produces the following output:

<homePageLib.HomePage object at 0x00B57570> Click Calendar link <calendarLib.CalendarPage object at 0x00B576F0> Click Home Page link <homePageLib.HomePage object at 0x00B57570> 

So, the part of this that I specifically feel most uneasy about are the from ____ import ____ lines that end up all over. These strike me as bad for the following reasons:

  1. I've always made it a convention to put all import statements at the top of a file.
  2. Since there may be multiple links to a page, this results in the same from foo import bar line of code in several places in a file.

The problem is, if we put these import statements at the top of the page, we get import errors, because (as per this example), HomePage imports CalendarPage and vice versa:

File homePageLib.py

from calendarLib import CalendarPage  class HomePage(object):     def clickCalendarLink(self):         # Click page2 link which navigates browswer to page2         print "Click Calendar link"         # Then returns the page2 object          return CalendarPage() 

File calendarLib.py

from homePageLib import HomePage  class CalendarPage(object):     def clickHomePageLink(self):         # Click page1 link which navigates browswer to page1         print "Click Home Page link"         # Then return the page2 object         return HomePage() 

This results in the following error:

>>> from homePageLib import HomePage Traceback (most recent call last):   File "c:\temp\script.py", line 1, in ?     #Script   File "c:\temp\homePageLib.py", line 2, in ?     from calendarLib import CalendarPage   File "c:\temp\calendarLib.py", line 2, in ?     from homePageLib import HomePage ImportError: cannot import name HomePage 

(tips on how to better format python output?)

Rather than perpetuating this style, I'd like to find a better way. Is there a Pythonic way to deal with circular dependencies like this and still keep import statements at the top of the file?

like image 970
Nathan Avatar asked Apr 21 '11 19:04

Nathan


People also ask

How do I remove circular import error?

Let's import the functions particularly instead of the whole file. To avoid circular import errors, you can move ```from module import X``` to a place it is needed.

Are circular imports allowed in python?

also just as a reference, it seems circular imports are allowed on python 3.5 (and probably beyond) but not 3.4 (and probably bellow).


1 Answers

Resolving these constructs usually involves techniques like Dependency Injection.

It is, however, rather simple to fix this error:

In calendarLib.py:

import homePageLib  class CalendarPage(object):     def clickHomePageLink(self):         [...]         return homePageLib.HomePage() 

The code at module level is executed at import time. Using the from [...] import [...] syntax requires the module to be completely initialized to succeed.

A simple import [...] does not, because no symbols are accessed, thus breaking the dependency chain.

like image 52
ebo Avatar answered Sep 20 '22 23:09

ebo