爬蟲基礎---1
1.安裝requests-----》pip install requests
import requests
r = requests.get("http://www.weather.com.cn/weather/101280601.shtml")
r.encoding="utf-8"
print(r.text)
會出現如下所示的效果
有的網站禁止爬蟲,這樣的話 需要模擬瀏覽器傳送請求,在谷歌瀏覽器輸入chrome://version
import requests
//加上header
headers = {"User-Agent":
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36"
}
r = requests.get("https://www.tianqi.com/shenzhen/life.html",headers=headers)
r.encoding="utf-8"
print(r.text)
這樣就能爬取了!!!
相關文章
- 爬蟲(1) - 爬蟲基礎入門理論篇爬蟲
- 爬蟲基礎爬蟲
- 爬蟲基礎篇爬蟲
- 【0基礎學爬蟲】爬蟲基礎之資料儲存爬蟲
- 【0基礎學爬蟲】爬蟲基礎之檔案儲存爬蟲
- 爬蟲開發知識入門基礎(1)爬蟲
- Python:基礎&爬蟲Python爬蟲
- 爬蟲基礎知識爬蟲
- Python 爬蟲零基礎教程(1):爬單個圖片Python爬蟲
- 【0基礎學爬蟲】爬蟲基礎之自動化工具 Pyppeteer 的使用爬蟲
- 【0基礎學爬蟲】爬蟲基礎之網路請求庫的使用爬蟲
- python爬蟲基礎概念Python爬蟲
- 基礎爬蟲案例實戰爬蟲
- python_爬蟲基礎Python爬蟲
- Python分散式爬蟲(三) - 爬蟲基礎知識Python分散式爬蟲
- Python爬蟲之路-爬蟲基礎知識(理論)Python爬蟲
- Python爬蟲入門(2):爬蟲基礎瞭解Python爬蟲
- 【0基礎學爬蟲】爬蟲基礎之自動化工具 Playwright 的使用爬蟲
- 【0基礎學爬蟲】爬蟲基礎之自動化工具 Selenium 的使用爬蟲
- python網路爬蟲(9)構建基礎爬蟲思路Python爬蟲
- 爬蟲入門基礎-Python爬蟲Python
- python爬蟲基礎之urllibPython爬蟲
- Python爬蟲基礎之seleniumPython爬蟲
- python 爬蟲基礎知識一Python爬蟲
- Python爬蟲開發與專案實戰——基礎爬蟲分析Python爬蟲
- Python爬蟲基礎-01-帶有請求引數的爬蟲Python爬蟲
- [Python3網路爬蟲開發實戰] 2-爬蟲基礎 2-網頁基礎Python爬蟲網頁
- 【1】爬蟲概述爬蟲
- python爬蟲基礎與http協議Python爬蟲HTTP協議
- [Python3網路爬蟲開發實戰] 2-爬蟲基礎 1-HTTP基本原理Python爬蟲HTTP
- Python爬蟲從入門到精通系列──第1課 基礎知識Python爬蟲
- Python爬蟲之Scrapy學習(基礎篇)Python爬蟲
- 學爬蟲,我需要掌握哪些Python基礎?爬蟲Python
- 2.python爬蟲基礎——Urllib庫Python爬蟲
- Python 基礎學習 網路小爬蟲Python爬蟲
- Python爬蟲(1.爬蟲的基本概念)Python爬蟲
- 爬蟲逆向基礎,認識 SM1-SM9、ZUC 國密演算法爬蟲演算法
- 學習爬蟲必須學的基礎知識爬蟲