Python爬虫课--第二节 爬虫请求模块 urllib.request,urllib.parse,requests模块1 urllib.request模块2 urllib.parse模块3 请求⽅式4 requests模块5 requests 模块源码分析
1 urllib.request模块1.1 版本python2 :urllib2、urllibpython3 :把urllib和urllib2合并,urllib.request1.2 常⽤的⽅法urllib.request.urlopen(“⽹址”) 作⽤ :向⽹站发起⼀个请求并获取响应import urllib.request# response是响应对象response = urllib.request.urlopen('https://www.duitang.com/')# read