mirror of https://github.com/searxng/searxng.git
22 lines
400 B
Python
22 lines
400 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 [{'url': '', 'title': '', 'content': ''}]
|
|
|