pick FIRST image from the search result list
This commit is contained in:
parent
0e33df5f18
commit
3d54463839
@ -63,9 +63,10 @@ def download_media(html, images, wiki):
|
||||
|
||||
# we select the first search result
|
||||
# (assuming that this is the image we are looking for)
|
||||
image = data['query']['allimages'][:1] # pick last item!!!
|
||||
image = data['query']['allimages'][0]
|
||||
|
||||
# then we download the image
|
||||
print(image)
|
||||
image_url = image['url']
|
||||
image_filename = image['name']
|
||||
print('Downloading:', image_filename)
|
||||
|
@ -64,7 +64,7 @@ def download_media(html, images, wiki):
|
||||
|
||||
# we select the first search result
|
||||
# (assuming that this is the image we are looking for)
|
||||
image = data['query']['allimages'][:1] # !!! pick last image
|
||||
image = data['query']['allimages'][0]
|
||||
|
||||
# then we download the image
|
||||
image_url = image['url']
|
||||
|
Loading…
Reference in New Issue
Block a user