ホームページ >バックエンド開発 >Python チュートリアル >エントリーレベルの Bing 壁紙スクレーパー

エントリーレベルの Bing 壁紙スクレーパー

Patricia Arquette
Patricia Arquetteオリジナル
2025-01-04 01:22:39513ブラウズ

Entry-Level Bing Wallpaper Scraper

準備作業

Bing 壁紙の Web 要素と 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: 取得する壁紙の数 (この場合は 1 つだけ)。
  • mkt=en-US: 市場/言語コード (この場合、英語 - 米国)。

2.画像の URL とダウンロード:
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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。