mirror of
https://github.com/searxng/searxng.git
synced 2024-11-19 19:00:10 +01:00
[fix] pep8
This commit is contained in:
parent
99688d2c8e
commit
85b81be35b
@ -4,6 +4,7 @@ from lxml import html
|
||||
base_url = None
|
||||
search_url = None
|
||||
|
||||
|
||||
def request(query, params):
|
||||
global search_url
|
||||
query = urlencode({'q': query})[2:]
|
||||
@ -24,10 +25,10 @@ def response(resp):
|
||||
url = link.attrib.get('href')
|
||||
title = link.text_content()
|
||||
|
||||
content =''
|
||||
content = ''
|
||||
if len(result.xpath('./p[@class="desc"]')):
|
||||
content = result.xpath('./p[@class="desc"]')[0].text_content()
|
||||
|
||||
|
||||
results.append({'url': url, 'title': title, 'content': content})
|
||||
|
||||
|
||||
return results
|
||||
|
Loading…
Reference in New Issue
Block a user