一文带你了解Python 四种常见基础爬虫方法介绍
一、Urllib方法 Urllib是python内置的HTTP请求库 import urllib.request #1.定位抓取的url\nurl='http://www.baidu.com/' #2.向目标url发送请求 response=urllib.request.urlopen(url) #3.读取数据 data=response.read() # print(data) #打印出来的数据有ASCII码 print(data.decode('utf-8')) #decode将相应编码格式的数据转换成字符串 #post请求 import urllib.parse url='htt
下载地址
用户评论