第2章-爬虫请求模块
一、urllib.request模块
1、urlretrieve()
urllib.request.urlretrieve()网址内容下载
urlretrieve(url, filename=None, reporthook=None, data=None)
2、urlopen()
urllib.request.urlopen()网页源码下载
urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
*, cafile=None, capath=None, cadefault=False, context=None)
urlopen()即可以传入一个网址,也可传入一个对象