2013-10-16 22:27:25 +00:00
|
|
|
from urlparse import urljoin
|
2013-10-17 18:43:05 +00:00
|
|
|
from cgi import escape
|
2013-10-20 19:31:16 +00:00
|
|
|
from urllib import urlencode
|
2014-02-05 19:24:31 +00:00
|
|
|
from lxml import html
|
2013-10-16 22:27:25 +00:00
|
|
|
|
2013-10-17 19:07:09 +00:00
|
|
|
categories = ['it']
|
|
|
|
|
2013-10-23 21:55:37 +00:00
|
|
|
url = 'http://stackoverflow.com/'
|
2014-01-30 00:55:49 +00:00
|
|
|
search_url = url+'search?{query}&page={pageno}'
|
2014-01-20 01:31:20 +00:00
|
|
|
result_xpath = './/div[@class="excerpt"]//text()'
|
|
|
|
|
2014-01-30 00:55:49 +00:00
|
|
|
paging = True
|
|
|
|
|
2013-10-16 22:27:25 +00:00
|
|
|
|
|
|
|
def request(query, params):
|
2014-01-30 00:55:49 +00:00
|
|
|
params['url'] = search_url.format(query=urlencode({'q': query}),
|
|
|
|
pageno=params['pageno'])
|
2013-10-16 22:27:25 +00:00
|
|
|
return params
|
|
|
|
|
|
|
|
|
|
|
|
def response(resp):
|
|
|
|
results = []
|
|
|
|
dom = html.fromstring(resp.text)
|
|
|
|
for result in dom.xpath('//div[@class="question-summary search-result"]'):
|
|
|
|
link = result.xpath('.//div[@class="result-link"]//a')[0]
|
2013-10-23 21:55:37 +00:00
|
|
|
href = urljoin(url, link.attrib.get('href'))
|
2014-01-11 11:39:39 +00:00
|
|
|
title = escape(' '.join(link.xpath('.//text()')))
|
2014-01-20 01:31:20 +00:00
|
|
|
content = escape(' '.join(result.xpath(result_xpath)))
|
2013-10-23 21:55:37 +00:00
|
|
|
results.append({'url': href, 'title': title, 'content': content})
|
2013-10-16 22:27:25 +00:00
|
|
|
return results
|