mirror of
https://github.com/searxng/searxng
synced 2024-11-09 01:10:26 +00:00
22 lines
370 B
Python
22 lines
370 B
Python
|
|
||
|
def request(query, params):
|
||
|
'''pre-request callback
|
||
|
params<dict>:
|
||
|
method : POST/GET
|
||
|
headers : {}
|
||
|
data : {} # if method == POST
|
||
|
url : ''
|
||
|
'''
|
||
|
|
||
|
params['url'] = 'https://host/%s' % query
|
||
|
|
||
|
return params
|
||
|
|
||
|
|
||
|
def response(resp):
|
||
|
'''post-response callback
|
||
|
resp: requests response object
|
||
|
'''
|
||
|
return [resp.text]
|
||
|
|