You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
521 B
25 lines
521 B
|
|
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': ''}]
|
|
|