Open skuma307 opened 1 year ago
you should try: import simple_image_download.simple_image_download as simp response = simp.Downloader() response.search_urls('Circular economy', limit=5)
above solution did not work for me: AttributeError: module 'simple_image_download.simple_image_download' has no attribute 'Downloader'
I think simple image downloaded didn't work anymore, you should try bing image download, that worked for me
above solution did not work for me: AttributeError: module 'simple_image_download.simple_image_download' has no attribute 'Downloader'
from simple_image_download import simple_image_download as simp response = simp.simple_image_download() response.urls('Circular economy', limit=5)
Hi, thanks for this wonderful library. I tried downloading the image and the URLs for those images but I got below mentioned error: `--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) in
1 from simple_image_download import simple_image_download as simp
2 response = simp.simple_image_download()
----> 3 response.search_urls('Circular economy', limit=5)
4 for url in response.cache:
5 print(url)
AttributeError: 'simple_image_download' object has no attribute 'search_urls'`
I am trying on Google Colab and also tried on Windows but it is giving the same error. Can you please help me fix this? Thanks in advanced.