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.

Multilevel relative import

I have following folder structure

top\
   __init__.py
   util\
      __init__.py
      utiltest.py
   foo\
      __init__.py
      foo.py
      bar\
         __init__.py
         foobar.py

I want to access from foobar.py the module utiltest.py. I tried following relative import, but this doesn't work: from ...util.utiltest import *

I always get ValueError: Attempted relative import beyond toplevel package

How to do such a multileve relative import?

share|improve this question
why relative import ? an absolute import should be the easiest way of doing this ;) : from util.utiltest import * – Cédric Julien Feb 14 '12 at 12:56

1 Answer

up vote 1 down vote accepted

You must import foobar from the parent folder of top:

import top.foo.bar.foobar

This tells Python that top is the top level package. Relative imports are possible only inside a package.

share|improve this answer

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.