Last active
November 8, 2024 11:07
-
-
Save yunjey/14e3a069ad2aa3adf72dee93a53117d6 to your computer and use it in GitHub Desktop.
downloading images from flickr using python-flickr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# First, you should install flickrapi | |
# pip install flickrapi | |
import flickrapi | |
import urllib | |
from PIL import Image | |
# Flickr api access key | |
flickr=flickrapi.FlickrAPI('c6a2c45591d4973ff525042472446ca2', '202ffe6f387ce29b', cache=True) | |
keyword = 'siberian husky' | |
photos = flickr.walk(text=keyword, | |
tag_mode='all', | |
tags=keyword, | |
extras='url_c', | |
per_page=100, # may be you can try different numbers.. | |
sort='relevance') | |
urls = [] | |
for i, photo in enumerate(photos): | |
print (i) | |
url = photo.get('url_c') | |
urls.append(url) | |
# get 50 urls | |
if i > 50: | |
break | |
print (urls) | |
# Download image from the url and save it to '00001.jpg' | |
urllib.urlretrieve(urls[1], '00001.jpg') | |
# Resize the image and overwrite it | |
image = Image.open('00001.jpg') | |
image = image.resize((256, 256), Image.ANTIALIAS) | |
image.save('00001.jpg') |
HI!,
ive been trying to create a dataset for my final project and your code has been the most helpful out of anything that I've found. I understand it's older code, but might you be willing to share how one might download the results into a specific folder? also, when I try the resize option on more than one, using the fname, it doesn't work :( it says fname has no attribute read. I would greatly appreciate any help.
Both things are doable, for the path you can adapt using os.path then join it with the f-string in the script, for changing dimensions or manipulating any of the image you can use PIL.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HI!,
ive been trying to create a dataset for my final project and your code has been the most helpful out of anything that I've found. I understand it's older code, but might you be willing to share how one might download the results into a specific folder? also, when I try the resize option on more than one, using the fname, it doesn't work :( it says fname has no attribute read. I would greatly appreciate any help.