2014-12-20 06:07:32 +00:00
|
|
|
## 500px (Images)
|
|
|
|
#
|
|
|
|
# @website https://500px.com
|
|
|
|
# @provide-api yes (https://developers.500px.com/)
|
|
|
|
#
|
|
|
|
# @using-api no
|
|
|
|
# @results HTML
|
|
|
|
# @stable no (HTML can change)
|
|
|
|
# @parse url, title, thumbnail, img_src, content
|
|
|
|
#
|
|
|
|
# @todo rewrite to api
|
|
|
|
|
|
|
|
|
|
|
|
from urllib import urlencode
|
|
|
|
from urlparse import urljoin
|
|
|
|
from lxml import html
|
2015-01-17 18:21:09 +00:00
|
|
|
import re
|
2015-02-01 12:43:10 +00:00
|
|
|
from searx.engines.xpath import extract_text
|
2014-12-20 06:07:32 +00:00
|
|
|
|
|
|
|
# engine dependent config
|
|
|
|
categories = ['images']
|
|
|
|
paging = True
|
|
|
|
|
|
|
|
# search-url
|
|
|
|
base_url = 'https://500px.com'
|
2015-02-01 12:43:10 +00:00
|
|
|
search_url = base_url + '/search?search?page={pageno}&type=photos&{query}'
|
2014-12-20 06:07:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
# do search-request
|
|
|
|
def request(query, params):
|
|
|
|
params['url'] = search_url.format(pageno=params['pageno'],
|
|
|
|
query=urlencode({'q': query}))
|
|
|
|
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
|
|
|
# get response from search-request
|
|
|
|
def response(resp):
|
|
|
|
results = []
|
2014-12-29 20:31:04 +00:00
|
|
|
|
2014-12-20 06:07:32 +00:00
|
|
|
dom = html.fromstring(resp.text)
|
2015-01-17 18:21:09 +00:00
|
|
|
regex = re.compile('3\.jpg.*$')
|
2014-12-29 20:31:04 +00:00
|
|
|
|
2014-12-20 06:07:32 +00:00
|
|
|
# parse results
|
|
|
|
for result in dom.xpath('//div[@class="photo"]'):
|
|
|
|
link = result.xpath('.//a')[0]
|
|
|
|
url = urljoin(base_url, link.attrib.get('href'))
|
2015-02-01 12:43:10 +00:00
|
|
|
title = extract_text(result.xpath('.//div[@class="title"]'))
|
|
|
|
thumbnail_src = link.xpath('.//img')[0].attrib.get('src')
|
2015-01-17 18:21:09 +00:00
|
|
|
# To have a bigger thumbnail, uncomment the next line
|
2015-02-01 12:43:10 +00:00
|
|
|
# thumbnail_src = regex.sub('4.jpg', thumbnail_src)
|
|
|
|
content = extract_text(result.xpath('.//div[@class="info"]'))
|
2015-01-17 18:21:09 +00:00
|
|
|
img_src = regex.sub('2048.jpg', thumbnail_src)
|
2014-12-20 06:07:32 +00:00
|
|
|
|
|
|
|
# append result
|
|
|
|
results.append({'url': url,
|
|
|
|
'title': title,
|
|
|
|
'img_src': img_src,
|
|
|
|
'content': content,
|
2015-01-17 18:21:09 +00:00
|
|
|
'thumbnail_src': thumbnail_src,
|
2014-12-20 06:07:32 +00:00
|
|
|
'template': 'images.html'})
|
|
|
|
|
|
|
|
# return results
|
|
|
|
return results
|