forked from Ponysearch/Ponysearch
Add user-agent to stract requests
This commit is contained in:
parent
32bd55e268
commit
b21aaa8907
1 changed files with 6 additions and 1 deletions
|
@ -6,6 +6,7 @@ ends.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from json import dumps
|
from json import dumps
|
||||||
|
from searx.utils import searx_useragent
|
||||||
|
|
||||||
about = {
|
about = {
|
||||||
"website": "https://stract.com/",
|
"website": "https://stract.com/",
|
||||||
|
@ -23,7 +24,11 @@ search_url = "https://stract.com/beta/api/search"
|
||||||
def request(query, params):
|
def request(query, params):
|
||||||
params['url'] = search_url
|
params['url'] = search_url
|
||||||
params['method'] = "POST"
|
params['method'] = "POST"
|
||||||
params['headers'] = {'Accept': 'application/json', 'Content-Type': 'application/json'}
|
params['headers'] = {
|
||||||
|
'Accept': 'application/json',
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
'User-Agent': searx_useragent(),
|
||||||
|
}
|
||||||
params['data'] = dumps({'query': query, 'page': params['pageno'] - 1})
|
params['data'] = dumps({'query': query, 'page': params['pageno'] - 1})
|
||||||
|
|
||||||
return params
|
return params
|
||||||
|
|
Loading…
Reference in a new issue