import urllib.request, ImportError: No module named request -


i trying import urllib.request python 2.7.10 on pycharm 4.5.4 on window 10 getting error "importerror: no module named request".

the urllib.request modules have been deprecated .. use

import urllib 

and function if earlier writing say

urllib.request.urlretrieve 

now write

urllib.urlretrieve 

Comments

Popular posts from this blog

html - Styling progress bar with inline style -

java - Oracle Sql developer error: could not install some modules -

How to use autoclose brackets in Jupyter notebook? -