爬虫网络请求模块-urllib-requests-python爬虫知识点2爬虫网络请求模块一、urllib二、requests
爬虫网络请求模块urlibpython内置的网络请求模块为什么要学习这个模块1.有些比较老的爬虫项目就是这个技术2.有的时候我们去怕一些数据需要reque+urlib模块进行配合3.内置的发出请求获取响应解析响应url=’’response=requests.get(url)with open(‘photo.png’,‘rb’) as f:f.write(response.content)from urllib import requestsrequest.urlretri