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.

Can you tell me why there is difference between 'import ...' and 'from ... import ...' and I get exception using the first one?

Here is my layout:

/tmp/zero/
|~two/
| |-__init__.py
| |-four.py
| `-three.py
|-__init__.py
`-one.py


/tmp/zero/one.py
=================
import zero.two

    /tmp/zero/two/__init__.py
    =================
    import zero.two.three

    /tmp/zero/two/three.py
    =================
    # this works
    from zero.two import four
    four.myprint()

    # this FAILS
    import zero.two.four
    zero.two.four.myprint()

    /tmp/zero/two/four.py
    =================
    def myprint():
        print 'four.myprint'

/tmp$ PYTHONPATH=/tmp/ python -c 'import zero.one'
four.myprint
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "zero/one.py", line 1, in <module>
    import zero.two
  File "zero/two/__init__.py", line 1, in <module>
    import zero.two.three
  File "zero/two/three.py", line 9, in <module>
    zero.two.four.myprint()
AttributeError: 'module' object has no attribute 'two'

Cheers pythoners!

share|improve this question

1 Answer

zero.two is a module there, zero/two/__init__.py. It's a concrete thing, not a magic thing. If you put into zero/two/__init__.py a line from . import four, it'll start working. os.path is an example of this - it's a module, but it's imported in os/__init__.py so that you can import os; os.path.

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.