为什么我不能用 python 从谷歌下载图片?

新手上路,请多包涵

该代码帮助我从谷歌下载了一堆图像。它曾经在几天前工作,现在突然间代码中断了。

代码 :

 # importing google_images_download module
from google_images_download import google_images_download

# creating object
response = google_images_download.googleimagesdownload()

search_queries = ['Apple', 'Orange', 'Grapes', 'water melon']

def downloadimages(query):
    # keywords is the search query
    # format is the image file format
    # limit is the number of images to be downloaded
    # print urs is to print the image file url
    # size is the image size which can
    # be specified manually ("large, medium, icon")
    # aspect ratio denotes the height width ratio
    # of images to download. ("tall, square, wide, panoramic")
    arguments = {"keywords": query,
                 "format": "jpg",
                 "limit":4,
                 "print_urls":True,
                 "size": "medium",
                 "aspect_ratio": "panoramic"}
    try:
        response.download(arguments)

    # Handling File NotFound Error
    except FileNotFoundError:
        arguments = {"keywords": query,
                     "format": "jpg",
                     "limit":4,
                     "print_urls":True,
                     "size": "medium"}

        # Providing arguments for the searched query
        try:
            # Downloading the photos based
            # on the given arguments
            response.download(arguments)
        except:
            pass

# Driver Code
for query in search_queries:
    downloadimages(query)
    print()

输出日志:

项目编号:1 –> 项目名称 = Apple Evaluating… 开始下载…

不幸的是,所有 4 个都无法下载,因为某些图像无法下载。 0 是我们为这个搜索过滤器得到的全部!

错误:0

Item no.: 1 –> Item name = Orange Evaluating… 开始下载…

不幸的是,所有 4 个都无法下载,因为某些图像无法下载。 0 是我们为这个搜索过滤器得到的全部!

错误:0

项目编号:1 –> 项目名称 = Grapes Evaluating… Starting Download…

不幸的是,所有 4 个都无法下载,因为某些图像无法下载。 0 是我们为这个搜索过滤器得到的全部!

错误:0

Item no.: 1 –> Item name = water melon Evaluating… 开始下载…

不幸的是,所有 4 个都无法下载,因为某些图像无法下载。 0 是我们为这个搜索过滤器得到的全部!

错误:0

这实际上创建了一个文件夹,但其中没有图像。

原文由 Sai Krishnadas 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1.3k
2 个回答

google_images_download 项目似乎不再与 Google API 兼容。

作为替代方案,您可以尝试 simple_image_download

原文由 Kaustuv 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题