diff options
author | Adam Tauber <asciimoo@gmail.com> | 2014-03-08 19:09:03 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2014-03-08 19:09:03 +0100 |
commit | 0fc481f47ed8116b3acd4dd11c0527994582d526 (patch) | |
tree | a8de4b360306e3ed2e555c0f4b20718b4c2a6203 /searx/engines/yahoo.py | |
parent | aa9df5bf169448dcc623da173a05ebfc21b69686 (diff) | |
download | searxng-0fc481f47ed8116b3acd4dd11c0527994582d526.tar.gz searxng-0fc481f47ed8116b3acd4dd11c0527994582d526.zip |
[fix] yahoo url extraction
Diffstat (limited to 'searx/engines/yahoo.py')
-rw-r--r-- | searx/engines/yahoo.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/searx/engines/yahoo.py b/searx/engines/yahoo.py index f070b8a7d..a6c597e1c 100644 --- a/searx/engines/yahoo.py +++ b/searx/engines/yahoo.py @@ -15,6 +15,10 @@ suggestion_xpath = '//div[@id="satat"]//a' paging = True +def parse_url(url_string): + start = url_string.find('http', url_string.find('/RU=')+1) + end = min(url_string.rfind('/RS'), url_string.rfind('/RK')) + return unquote(url_string[start:end]) def request(query, params): offset = (params['pageno'] - 1) * 10 + 1 @@ -34,10 +38,7 @@ def response(resp): dom = html.fromstring(resp.text) for result in dom.xpath(results_xpath): - url_string = extract_url(result.xpath(url_xpath), search_url) - start = url_string.find('http', url_string.find('/RU=')+1) - end = url_string.rfind('/RS') - url = unquote(url_string[start:end]) + url = parse_url(extract_url(result.xpath(url_xpath), search_url)) title = extract_text(result.xpath(title_xpath)[0]) content = extract_text(result.xpath(content_xpath)[0]) results.append({'url': url, 'title': title, 'content': content}) |