with tutorial framework espaƱol djangoproject desde con cero applications python python-3.x python-3.3

python - tutorial - AttributeError: el objeto ''module'' no tiene atributo ''request''



tutorial django (3)

Curiosamente, noté un comportamiento dependiente de IDE.

Tanto Spyder como PyCharm usan el mismo intérprete en mi máquina: en PyCharm tengo que hacer

import urllib.request

mientras en Spyder,

importar urllib

hace bien

Cuando ejecuto el siguiente código en Python - 3.3:

import urllib tempfile = urllib.request.urlopen("http://yahoo.com")

Obtuve el siguiente error:

Lo hice también para verificar:

¿Qué estoy haciendo mal? ¡Gracias por adelantado!


Importar urllib.request lugar de urllib .

import urllib.request


Si esto está en PyCharm, como era mío, asegúrese de que su nombre de archivo no sea urllib.py.