mirror of
https://github.com/searxng/searxng
synced 2024-10-30 21:20:28 +00:00
26 lines
521 B
Python
26 lines
521 B
Python
|
|
categories = ['general'] # optional
|
|
|
|
|
|
def request(query, params):
|
|
'''pre-request callback
|
|
params<dict>:
|
|
method : POST/GET
|
|
headers : {}
|
|
data : {} # if method == POST
|
|
url : ''
|
|
category: 'search category'
|
|
pageno : 1 # number of the requested page
|
|
'''
|
|
|
|
params['url'] = 'https://host/%s' % query
|
|
|
|
return params
|
|
|
|
|
|
def response(resp):
|
|
'''post-response callback
|
|
resp: requests response object
|
|
'''
|
|
return [{'url': '', 'title': '', 'content': ''}]
|