首頁 >後端開發 >Python教學 >入門級 Bing 壁紙刮刀

入門級 Bing 壁紙刮刀

Patricia Arquette
Patricia Arquette原創
2025-01-04 01:22:39521瀏覽

Entry-Level Bing Wallpaper Scraper

準備工作

Bing 桌布網頁元素與 API 分析
要使用 Bing 建立自動桌布下載器,我們需要了解如何與 Bing API 互動。目標是獲取壁紙 URL 並將其以所需格式保存在本地。我們還將探索相關的 API、圖像元素和 URL 模式。

關鍵部件:

1。 Bing 的桌布 API:
Bing 提供了一個端點來存取其壁紙元數據,包括圖像 URL、標題和描述。我們使用的主要終點是:

https://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1&mkt=en-US

  • idx=0: 壁紙索引(從今天開始)。
  • n=1:要取得的壁紙數量(在本例中,只有一張)。
  • mkt=en-US:市場/語言代碼(在本例中為英語 - 美國)。

2。圖片網址及下載:
API 提供的圖像 URL 通常採用相對格式(以 /th?id=... 開頭)。要下載圖像,我們需要在前面添加基本 URL https://www.bing.com。

格式和命名約定:

圖片 URL 通常採用以下形式:

/th?id=OHR.SouthPadre_ZH-CN8788572569_1920x1080.jpg

我們將對其進行處理以提取必要的信息,例如圖像名稱和檔案副檔名,並相應地保存。

過程

1。從 Bing API 取得資料:
第一步是向 Bing API 發送 GET 請求。這將返回一個 JSON 對象,其中包含給定日期的壁紙的元資料。

import requests
import os

# Simulate browser request headers
headers = {
    "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
}

# Directory to save wallpapers
default_pictures_dir = os.path.join(os.path.expanduser("~"), "Pictures")
picture_path = os.path.join(default_pictures_dir, "bing")

# Create the directory if it doesn't exist
if not os.path.exists(picture_path):
    os.makedirs(picture_path)

# Fetch wallpapers (last 4 days including today)
for idx in range(4):
    # Request Bing's wallpaper metadata
    api_url = f"https://www.bing.com/HPImageArchive.aspx?format=js&idx={idx}&n=1&mkt=en-US"
    response = requests.get(api_url, headers=headers)
    if response.status_code != 200:
        print(f"Failed to fetch data for idx={idx}, skipping.")
        continue

    data = response.json()
    if not data.get("images"):
        print(f"No images found for idx={idx}, skipping.")
        continue

    # Extract image details
    image_info = data["images"][0]
    image_url = "https://www.bing.com" + image_info["url"]
    image_name = image_info["urlbase"].split("/")[-1] + ".jpg"
    save_path = os.path.join(picture_path, image_name)

    # Download the image
    image_response = requests.get(image_url, headers=headers)
    if image_response.status_code == 200:
        with open(save_path, "wb") as f:
            f.write(image_response.content)
        print(f"Downloaded: {save_path}")
    else:
        print(f"Failed to download image for idx={idx}.")

線上測驗

python3 -c "$(curl -fsSL https://ghproxy.com/https://raw.githubusercontent.com/Excalibra/scripts/refs/heads/main/d-python/get_bing_wallpapers.py)"

以上是入門級 Bing 壁紙刮刀的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn