mirror of https://github.com/searxng/searxng.git
[enh] examples added
This commit is contained in:
parent
62f6d34b95
commit
26c9c0e8be
|
@ -0,0 +1,21 @@
|
|||
|
||||
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]
|
||||
|
Loading…
Reference in New Issue