Browse Source

pick FIRST image from the search result list

master
manetta 3 years ago
parent
commit
3d54463839
  1. 3
      command-line/update.py
  2. 2
      web-interface/update.py

3
command-line/update.py

@ -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)

2
web-interface/update.py

@ -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…
Cancel
Save