You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 25, 2022. It is now read-only.
queries = [
'''
Enter queries for relevent images
'''
]
def download_image(queries):
parameters = {
"keywords" : queries,
"format" : "jpg",
"limit" : 10,
"print_urls" : True,
"size" : "medium",
"aspect_ratio" : "panoramic"
}
# process of donwloading starts here
try:
recieve.download(parameters)
# Handling file not found error
except FileNotFoundError:
print("File Not Found based on required parameters")
for q in queries:
downloadimages(q)
print()
Problem Statement
write a program that accept category from user and download n no of images to local system
The text was updated successfully, but these errors were encountered: