python實戰:經過假裝瀏覽器爬取信息

一、對於網站url爲http協議的,咱們能夠直接經過urlopen()直接爬取 例如: import urllib.request #爬百度首頁 url='http://www.baidu.com/' #讀取響應信息並解碼 html=urllib.request.urlopen(url).read().decode('utf-8') #打印爬到的信息 print(html) 爬取結果爲 二、但
相關文章
相關標籤/搜索