Skip to content

Instantly share code, notes, and snippets.

@Gunnvant
Last active September 21, 2020 17:14
Show Gist options
  • Save Gunnvant/edd0754a79956a699f4f2cf05fa7e42c to your computer and use it in GitHub Desktop.
Save Gunnvant/edd0754a79956a699f4f2cf05fa7e42c to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
## run
## > python flickr_GetUrl.py tag number_of_images_to_attempt_to_download
from flickrapi import FlickrAPI
import pandas as pd
import sys
key=''
secret=''
def get_urls(image_tag,MAX_COUNT):
flickr = FlickrAPI(key, secret)
photos = flickr.walk(text=image_tag,
tag_mode='all',
tags=image_tag,
extras='url_o',
per_page=50,
sort='relevance')
count=0
urls=[]
for photo in photos:
if count< MAX_COUNT:
count=count+1
print("Fetching url for image number {}".format(count))
try:
url=photo.get('url_o')
urls.append(url)
except:
print("Url for image number {} could not be fetched".format(count))
else:
print("Done fetching urls, fetched {} urls out of {}".format(len(urls),MAX_COUNT))
break
urls=pd.Series(urls)
print("Writing out the urls in the current directory")
urls.to_csv(image_tag+"_urls.csv")
print("Done!!!")
def main():
tag=sys.argv[1]
MAX_COUNT=int(sys.argv[2])
get_urls(tag,MAX_COUNT)
if __name__=='__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment