I know I have seen the answer somewhere a couple of weeks ago but I can\'t find it now.
Simple urllib.urlretrieve
in Python 3.3. How do you do it? I\'
In Python 3.x, the urlretrieve function is located in the urllib.request module:
>>> from urllib import urlretrieve
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name urlretrieve
>>>
>>> from urllib.request import urlretrieve
>>> urlretrieve
<function urlretrieve at 0x023C2390>
>>>