Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

difference between from x import y and import x.y

Tags:

python

import

So I am confused as what the difference is...Here is some code to display my confusion:

>>> import collections.OrderedDict as od
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named OrderedDict
>>> from collections import OrderedDict as od
>>> od
<class 'collections.OrderedDict'>

explanation:

import collections.OrderedDict did not find the module, yet from collections import OrderedDict found it?! What is the difference between those two statements?

the class is read as collections.OrderedDict, so I don't understand why the first attempt was unable to find the module

note:

I am simply using collections as an example. I am not looking for specifically why my example acted the way it did for collections, but rather an explanation for what the different lines of code are actually requesting as far as imports go. If you would like to include an explanation on the error, feel free! Thanks!

like image 685
Ryan Saxe Avatar asked Oct 29 '13 20:10

Ryan Saxe


People also ask

What is the difference between import X and from X import *?

The difference between import and from import in Python is: import imports the whole library. from import imports a specific member or members of the library.

What is from X import Y in Python?

from x import y will only import y from module x . This way, you won't have to use dot-notation. (Bonus: from x import * will refer to the module in the current namespace while also replacing any names that are the same) import x as y will import module x which can be called by referring to it as y.


1 Answers

OrderedDict is a class within the collections module. When you see things like x.y and something is being imported from it, that means that "y" in this case is actually a module.

You should read the docs about how import works: here. It's long and involved but at the same time fairly straight forward in how it looks into the different packages and modules to find what should be brought into play. Specifically, the import statement itself and import system.

like image 188
wheaties Avatar answered Oct 06 '22 23:10

wheaties