2013-10-18 00:15:26 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2013-10-23 21:55:37 +00:00
|
|
|
from urllib import urlencode
|
2014-05-20 14:57:03 +00:00
|
|
|
#from json import loads
|
|
|
|
from urlparse import urljoin
|
|
|
|
from lxml import html
|
|
|
|
from time import time
|
2013-10-18 00:15:26 +00:00
|
|
|
|
2013-10-18 07:35:29 +00:00
|
|
|
categories = ['images']
|
2013-10-18 00:15:26 +00:00
|
|
|
|
2014-05-20 14:57:03 +00:00
|
|
|
url = 'https://secure.flickr.com/'
|
|
|
|
search_url = url+'search/?{query}&page={page}'
|
|
|
|
results_xpath = '//div[@class="view display-item-tile"]/figure/div'
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2014-01-30 00:19:51 +00:00
|
|
|
paging = True
|
|
|
|
|
2013-10-18 00:15:26 +00:00
|
|
|
|
|
|
|
def request(query, params):
|
2014-05-16 16:07:34 +00:00
|
|
|
params['url'] = search_url.format(query=urlencode({'text': query}),
|
2014-01-30 00:19:51 +00:00
|
|
|
page=params['pageno'])
|
2014-05-20 14:57:03 +00:00
|
|
|
time_string = str(int(time())-3)
|
|
|
|
params['cookies']['BX'] = '3oqjr6d9nmpgl&b=3&s=dh'
|
|
|
|
params['cookies']['xb'] = '421409'
|
|
|
|
params['cookies']['localization'] = 'en-us'
|
|
|
|
params['cookies']['flrbp'] = time_string +\
|
|
|
|
'-3a8cdb85a427a33efda421fbda347b2eaf765a54'
|
|
|
|
params['cookies']['flrbs'] = time_string +\
|
|
|
|
'-ed142ae8765ee62c9ec92a9513665e0ee1ba6776'
|
|
|
|
params['cookies']['flrb'] = '9'
|
2013-10-18 00:15:26 +00:00
|
|
|
return params
|
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2013-10-18 00:15:26 +00:00
|
|
|
def response(resp):
|
|
|
|
results = []
|
2014-05-20 14:57:03 +00:00
|
|
|
dom = html.fromstring(resp.text)
|
|
|
|
for result in dom.xpath(results_xpath):
|
|
|
|
img = result.xpath('.//img')
|
|
|
|
|
|
|
|
if not img:
|
|
|
|
continue
|
|
|
|
|
|
|
|
img = img[0]
|
|
|
|
img_src = 'https:'+img.attrib.get('src')
|
|
|
|
|
|
|
|
if not img_src:
|
|
|
|
continue
|
|
|
|
|
|
|
|
href = urljoin(url, result.xpath('.//a')[0].attrib.get('href'))
|
|
|
|
title = img.attrib.get('alt', '')
|
|
|
|
results.append({'url': href,
|
|
|
|
'title': title,
|
|
|
|
'img_src': img_src,
|
2014-01-20 01:31:20 +00:00
|
|
|
'template': 'images.html'})
|
2013-10-18 00:15:26 +00:00
|
|
|
return results
|