urllib.request module fails to install in my system
In python3 you must use urllib3 module.
$ pip3 install urllib3
Or if you're using a virtual env:
$ pip install urllib3
urllib.request is only available in python3 branch. See the following post for more info. urllib.request in Python 2.7