mirror of
https://github.com/searxng/searxng.git
synced 2024-11-19 02:40:11 +01:00
[pylint] Reddit engine
Add Reddit engine to pylint process Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
2713ac6c0b
commit
2af50c2588
@ -1,6 +1,6 @@
|
|||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
"""
|
# lint: pylint
|
||||||
Reddit
|
"""Reddit
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
@ -26,16 +26,16 @@ base_url = 'https://www.reddit.com/'
|
|||||||
search_url = base_url + 'search.json?{query}'
|
search_url = base_url + 'search.json?{query}'
|
||||||
|
|
||||||
|
|
||||||
# do search-request
|
|
||||||
def request(query, params):
|
def request(query, params):
|
||||||
|
|
||||||
query = urlencode({'q': query, 'limit': page_size})
|
query = urlencode({'q': query, 'limit': page_size})
|
||||||
params['url'] = search_url.format(query=query)
|
params['url'] = search_url.format(query=query)
|
||||||
|
|
||||||
return params
|
return params
|
||||||
|
|
||||||
|
|
||||||
# get response from search-request
|
|
||||||
def response(resp):
|
def response(resp):
|
||||||
|
|
||||||
img_results = []
|
img_results = []
|
||||||
text_results = []
|
text_results = []
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user