首页 > 后端开发 > Python教程 > 入门级 Bing 壁纸刮刀

入门级 Bing 壁纸刮刀

Patricia Arquette
发布: 2025-01-04 01:22:39
原创
504 人浏览过

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

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板