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
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中文网其他相关文章!