import os import requests from bs4 import BeautifulSoup def download_images(keyword, num_images): url = f"https://image.baidu.com/search/flip?tn=baiduimage&ie=utf-8&word={keyword}&ct=201326592&v=flip" response = requests.get(url) soup = BeautifulSoup(response.content, "html.parser") img_tags = soup.find_all("img") # 创建一个目录来保存图片 os.makedirs(keyword, exist_ok=True) count = 0 for img_tag in img_tags: if count == num_images: break img_url = img_tag["src"] try: # 下载图片 response = requests.get(img_url) with open(f"{keyword}/{count+1}.jpg", "wb") as f: f.write(response.content) count += 1 print(f"Downloaded image {count}/{num_images}") except: print(f"Failed to download image {count+1}") keyword = "香蕉" # 搜索的关键词 num_images = 20 # 要下载的图片数 download_images(keyword, num_images)为什么下载失败
时间: 2024-04-19 10:30:19 浏览: 116
import sys import os import urllib from bs4 import BeautifulSoup
下载失败可能有几种可能的原因:
1. 网络连接问题:请确保你的网络连接正常,并且可以正常访问百度图片网站。
2. 图片链接问题:有时候,网页上的图片链接可能已经失效或不可访问。这可能导致下载失败。你可以尝试打开图片链接来确认是否可以正常访问。
3. 权限问题:有些网站可能对爬虫进行限制,阻止了你的请求。你可以尝试设置一个合适的 User-Agent 头部来模拟浏览器行为,以绕过可能的限制。
4. 文件夹创建问题:在代码中,使用 `os.makedirs(keyword, exist_ok=True)` 来创建保存图片的目录。请确保你的代码有足够的权限来创建目录,并且目录不存在。
5. 异常处理问题:在代码中,使用了一个简单的异常处理语句 `except` 来处理下载图片时可能出现的异常。但是这样的处理方式可能会导致你无法得知具体的错误信息。你可以尝试修改异常处理代码,以便打印出更详细的错误信息,帮助你找到问题所在。
请检查以上可能的原因,并根据具体的错误信息进行调试和排查。如果你能提供更多的错误信息和相关上下文,我可以帮助你更准确地定位问题。
阅读全文