libremiami-search/searx/engines/deviantart.py

34 lines
1.0 KiB
Python
Raw Normal View History

2013-10-20 11:12:10 +02:00
from urllib import urlencode
from lxml import html
from urlparse import urljoin
categories = ['images']
base_url = 'https://www.deviantart.com/'
search_url = base_url+'search?'
2014-01-20 02:31:20 +01:00
2013-10-20 11:12:10 +02:00
def request(query, params):
global search_url
params['url'] = search_url + urlencode({'q': query})
return params
def response(resp):
global base_url
results = []
if resp.status_code == 302:
return results
dom = html.fromstring(resp.text)
for result in dom.xpath('//div[contains(@class, "tt-a tt-fh")]'):
link = result.xpath('.//a[contains(@class, "thumb")]')[0]
url = urljoin(base_url, link.attrib.get('href'))
2014-01-20 02:31:20 +01:00
title_links = result.xpath('.//span[@class="details"]//a[contains(@class, "t")]') # noqa
2013-10-20 11:12:10 +02:00
title = ''.join(title_links[0].xpath('.//text()'))
img_src = link.xpath('.//img')[0].attrib['src']
2014-01-20 02:31:20 +01:00
results.append({'url': url,
'title': title,
'img_src': img_src,
'template': 'images.html'})
2013-10-20 11:12:10 +02:00
return results