The urllib.request modules have been deprecated ..
just use
import urllib
And for your function if you were earlier writing say
urllib.request.urlretrieve
Now you just write
urllib.urlretrieve
I have also faced the same error and Googled to solve it.
urlib.request is for Python 3.0.
You may use the code below:
import urllib
urllib.urlopen(url)