-
Notifications
You must be signed in to change notification settings - Fork 4
/
get_images.py
116 lines (107 loc) · 4.26 KB
/
get_images.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# -*- coding: utf-8 -*-
# This file is part of PyBOSSA.
#
# PyBOSSA is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# PyBOSSA is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with PyBOSSA. If not, see <http://www.gnu.org/licenses/>.
import urllib
import urllib2
import re
import json
import string
import requests
try:
import config
except:
print "You need to create a config.py file (see config.py.template)"
def get_flickr_photos(size="big"):
"""
Gets public photos from Flickr feeds
:arg string size: Size of the image from Flickr feed.
:returns: A list of photos.
:rtype: list
"""
# Get the ID of the photos and load it in the output var
# add the 'ids': '25053835@N03' to the values dict if you want to
# specify a Flickr Person ID
print('Contacting Flickr for photos')
url = "http://api.flickr.com/services/feeds/photos_public.gne"
values = {'nojsoncallback': 1,
'format': "json"}
query = url + "?" + urllib.urlencode(values)
urlobj = urllib2.urlopen(query)
data = urlobj.read()
urlobj.close()
# The returned JSON object by Flickr is not correctly escaped,
# so we have to fix it see
# http://goo.gl/A9VNo
regex = re.compile(r'\\(?![/u"])')
fixed = regex.sub(r"\\\\", data)
output = json.loads(fixed)
print('Data retrieved from Flickr')
# For each photo ID create its direct URL according to its size:
# big, medium, small (or thumbnail) + Flickr page hosting the photo
photos = []
for idx, photo in enumerate(output['items']):
print 'Retrieved photo: %s' % idx
imgUrl_m = photo["media"]["m"]
imgUrl_b = string.replace(photo["media"]["m"], "_m.jpg", "_b.jpg")
photos.append({'link': photo["link"], 'url_m': imgUrl_m,
'url_b': imgUrl_b})
return photos
def get_flickr_set_photos(set_id):
"""Get public photos from a Flickr set_id and return a list."""
url = 'http://api.flickr.com/services/rest/'
page = 1
payload = dict(
method='flickr.photosets.getPhotos',
api_key=config.flickr_api_key,
photoset_id=set_id,
format='json',
page=page,
nojsoncallback=1)
# Get the first batch of photos in the the photoset
res = requests.get(url, params=payload)
# Convert it to JSON
data = json.loads(res.text)
# Initiate the list of photos to return
photos = []
# If there are no errors, then proceed
if res.status_code == 200 and 'photoset' in data.keys():
# Get the owner name to create the photo link page
owner_name = data['photoset']['ownername']
# Get the total number of photos in this set
n_photos = int(data['photoset']['total'])
# Use a while loop for looping through all the available photos
# in the set. By default Flickr returns 500 pictures per page
while 'photoset' in data.keys():
for photo in data['photoset']['photo']:
direct_link = "http://farm%s.staticflickr.com/%s/%s_%s" % (
photo['farm'], photo['server'],
photo['id'], photo['secret'])
link = 'http://www.flickr.com/photos/%s/%s' % (
owner_name, photo['id'])
tmp = dict(url_m=direct_link + "_m.jpg",
url_b=direct_link + "_b.jpg",
link=link)
photos.append(tmp)
payload['page'] += 1
res = requests.get(url, params=payload)
data = json.loads(res.text)
if len(photos) == n_photos:
return photos
else:
print "Something went wrong! Different number of photos %s != %s" % (len(photos), n_photos)
return []
else:
print "Something went wrong"
print "ERROR: [%s]: %s" % (res.status_code, res.text)