Skip to content

抓取網頁並存檔

🖥️ 程式範例

1
2
3
4
5
6
7
8
import requests

# 抓取網頁原始碼
r = requests.get("https://www.vcdemy.com/web/example01.html")

# 儲存網頁原始碼
with open("example01.html", "w") as f:
    f.write(r.text)

📑 程式說明

上面這段 Python 程式碼使用 requests 套件來下載指定網頁的 HTML 原始碼,並將其儲存為本機的 example01.html 檔案。

主要步驟如下:

  1. 發送 HTTP GET 請求:

    透過 requests.get() 抓取 https://www.vcdemy.com/web/example01.html 的網頁內容。

    1
    2
    3
    4
    import requests
    
    # 抓取網頁原始碼
    r = requests.get("https://www.vcdemy.com/web/example01.html")
    
  2. 儲存 HTML 原始碼:

    使用 open("example01.html", "w") 以寫入 (w) 模式開啟檔案,並將 r.text(即取得的 HTML 原始碼)寫入其中。

    6
    7
    8
    # 儲存網頁原始碼
    with open("example01.html", "w") as f:
        f.write(r.text)
    

此程式適合用來 保存靜態網頁內容,以便後續分析或離線瀏覽。