概要:http協議的基本學習,python爬蟲的基本學習。
1.http的請求和響應,請求包括請求行,請求頭等等一系列的東西,請求中一個比較重要的知識就是get和post,其中get的傳送資料量大,並且安全性低,post則相反。?
2.爬蟲的一個簡單程式碼爬取2019版倚天屠龍記的趙敏主演陳鈺琪的百度百科網頁內容。
import urllib.request
response = urllib.request.urlopen('https://baike.baidu.com/item/%E9%99%88%E9%92%B0%E7%90%AA/4859301?fr=aladdin')
print(response.read().decode('utf-8'))
複製程式碼
程式碼效果圖如下: