python3 install urllib code example
Example 1: pip install urllib
pip install urllib3
Example 2: urllib3 python
>>> import urllib3
>>> http = urllib3.PoolManager()
>>> r = http.request('GET', 'http://httpbin.org/robots.txt')
>>> r.status
200
>>> r.data
'User-agent: *\nDisallow: /deny\n'