mirror of https://github.com/searxng/searxng.git
43 lines
1.0 KiB
Python
43 lines
1.0 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Semantic Scholar (Science)
|
|
"""
|
|
|
|
from json import dumps, loads
|
|
|
|
|
|
search_url = 'https://www.semanticscholar.org/api/1/search'
|
|
|
|
|
|
def request(query, params):
|
|
params['url'] = search_url
|
|
params['method'] = 'POST'
|
|
params['headers']['content-type'] = 'application/json'
|
|
params['data'] = dumps({
|
|
"queryString": query,
|
|
"page": params['pageno'],
|
|
"pageSize": 10,
|
|
"sort": "relevance",
|
|
"useFallbackRankerService": False,
|
|
"useFallbackSearchCluster": False,
|
|
"getQuerySuggestions": False,
|
|
"authors": [],
|
|
"coAuthors": [],
|
|
"venues": [],
|
|
"performTitleMatch": True,
|
|
})
|
|
return params
|
|
|
|
|
|
def response(resp):
|
|
res = loads(resp.text)
|
|
results = []
|
|
for result in res['results']:
|
|
results.append({
|
|
'url': result['primaryPaperLink']['url'],
|
|
'title': result['title']['text'],
|
|
'content': result['paperAbstractTruncated']
|
|
})
|
|
|
|
return results
|