1、python爬蟲 request.urlopen請求網頁擷取源碼

來源:互聯網
上載者:User

標籤:python3   python爬蟲   port   爬蟲   rap   odi   highlight   lib   font   

# python3匯入request包from urllib import requestimport sysimport io# 如果需要用print列印時,如果出現異常可以先設定輸出環境sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding=‘utf-8‘)# 需要擷取的urlurl = ‘http://www.xxx.com/‘# 標頭檔headers = {    "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36"}# 產生請求對象req = request.Request(url, headers=headers)# 調用request的urlopen方法發起請求,並返回結果對象,如果沒有data參數時,則是get請求,否則是post請求response = request.urlopen(req)# 將結果寫入html檔案中,with open(‘a.html‘, ‘wb‘) as f:    f.write(response.read())# 列印返回的狀態代碼print(response.getcode())# 列印返回的url,防止重新導向url變化 print(response.url)

1、python爬蟲 request.urlopen請求網頁擷取源碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.