什么是Urllib
Python内置的HTTP请求库
urllib.request 请求模块
urllib.error 异常处理模块
- urllib.parse url解析模块
- url.robotparser robots.txt解析模块
urllib相比于Python2的变化
Python2
import urllib2
response = urllib.urlopen('http://www.baidu.com')
Python3
import urllib.request
response = urllib.request.urlopen('http://www.baidu.com')
还不快抢沙发