1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-22 22:20:42 +02:00
searxng/searx/engines/flickr.py

31 lines
937 B
Python
Raw Normal View History

2013-10-18 02:15:26 +02:00
#!/usr/bin/env python
from urllib import quote
from lxml import html
from urlparse import urljoin
2013-10-18 09:35:29 +02:00
categories = ['images']
2013-10-18 02:15:26 +02:00
base_url = 'https://secure.flickr.com/'
search_url = base_url+'search/?q='
def request(query, params):
global search_url
query = quote(query.replace(' ', '+'), safe='+')
params['url'] = search_url + query
return params
def response(resp):
global base_url
results = []
dom = html.fromstring(resp.text)
2013-10-18 09:35:29 +02:00
for result in dom.xpath('//div[@id="thumbnails"]//a[@class="rapidnofollow photo-click" and @data-track="photo-click"]'):
2013-10-18 02:15:26 +02:00
url = urljoin(base_url, result.attrib.get('href'))
2013-10-18 09:35:29 +02:00
img = result.xpath('.//img')[0]
title = img.attrib.get('alt', '')
img_src = img.attrib.get('data-defer-src')
if not img_src:
continue
results.append({'url': url, 'title': title, 'img_src': img_src, 'template': 'images.html'})
2013-10-18 02:15:26 +02:00
return results