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.

I'm wondering if there's any difference between the code fragment

from urllib import request

and the fragment

import urllib.request

or if they are interchangeable. If they are interchangeable, which is the "standard"/"preferred" syntax (if there is one)?

Thanks!

share|improve this question
I'm not an expert on import so I wont leave an answer, but there is a difference about how things are going into sys.modules: take a look at this answer (at the end). (Maybe there's someone who can explain it better than me) – Rik Poggi Feb 25 '12 at 0:25

5 Answers

up vote 7 down vote accepted

There's very little difference in functionality, but the first form is preferential, as you can do

from urllib import request, parse, error

where in the second form that would have to be

import urllib.request, urllib.parse, urllib.error

and you'd have to reference using the fully qualified name, which is way less elegant.

share|improve this answer
9  
I disagree. It's purely a matter of pragmatism and context. Remember the zen of python: "Namespaces are one honking great idea -- let's do more of those!" The former is disadvantageous in that it flattens this namespace hierarchy and might overwrite/mask other variables in the scope. – mvanveen Feb 24 '12 at 23:31
Seriously when I try to import urllib.request my interpreter says it doesn't work – tkone Feb 24 '12 at 23:34
I agree it's down to context, and the latter is advantageous to partition the namespace, but in general I prefer the first form. – Karl Barker Feb 24 '12 at 23:35
>>> import urllib.request, urllib.parse, urllib.error Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named request >>> – tkone Feb 24 '12 at 23:36
@tkone urllib was split in Python3.0 - if you're using an older version it'll just be import urllib :) – Karl Barker Feb 24 '12 at 23:36
show 4 more comments

It depends on how you want to access the import when you refer to it.

from urllib import request
# access request directly.
mine = request()

import urllib.request
# used as urllib.request
mine = urllib.request()

You can also alias things yourself when you import for simplicity or to avoid masking built ins:

from os import open as _open
# lets you use os.open without destroying the 
# built in open() which returns file handles.
share|improve this answer
I just tried import urllib.request and it doesn't work at all (python 2.6.5 Ubuntu). – tkone Feb 24 '12 at 23:33
You should use a trailing underscore (rather than leading) to prevent clashing with built-ins. – deadly Aug 28 '12 at 10:36

You are using Python3 were urllib in the package. Both forms are acceptable and no one form of import is preferred over the other. Sometimes when there are multiple package directories involved you may to use the former from x.y.z.a import s

In this particular case with urllib package, the second way import urllib.request and use of urllib.request is how standard library uniformly uses it.

share|improve this answer

In python 2.x at least you cannot do import urllib2.urlopen

You have to do from urllib2 import urlopen

Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import urllib2.urlopen
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named urlopen
>>> import urllib.request
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named request
>>>
share|improve this answer

There is a difference. In some cases, one of those will work and the other won't. Here is an example: say we have the following structure:

foo.py
mylib\
    a.py
    b.py

Now, I want to import b.py to a.py. And I want to import a.py to foo. How do I do this? Two statements: In a I write:

import b

in foo.py I write:

import mylib.a

Well, this will generate an ImportError when trying to run foo.py. The interpreter will complain about the import statement in a.py (import b) saying there is no module b. So how can one fix this? In such a situation, changing the import statement in a to import mylib.b will not work since a and b are both in lib. The solution here (or at least one solution) is to use absolute import:

from lib import b

Source: Python: importing a module that imports a module

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.