mirror of
https://github.com/searxng/searxng.git
synced 2025-11-25 07:45:08 -05:00
53 lines
1.2 KiB
Python
53 lines
1.2 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""Grokipedia (general)"""
|
|
|
|
from urllib.parse import urlencode
|
|
from searx.utils import html_to_text
|
|
from searx.result_types import EngineResults
|
|
|
|
about = {
|
|
"website": 'https://grokipedia.com',
|
|
"wikidata_id": "Q136410803",
|
|
"official_api_documentation": None,
|
|
"use_official_api": False,
|
|
"require_api_key": False,
|
|
"results": "JSON",
|
|
}
|
|
|
|
base_url = "https://grokipedia.com/api/full-text-search"
|
|
categories = ['general']
|
|
paging = True
|
|
results_per_page = 10
|
|
|
|
|
|
def request(query, params):
|
|
|
|
start_index = (params["pageno"] - 1) * results_per_page
|
|
|
|
query_params = {
|
|
"query": query,
|
|
"limit": results_per_page,
|
|
"offset": start_index,
|
|
}
|
|
|
|
params["url"] = f"{base_url}?{urlencode(query_params)}"
|
|
|
|
return params
|
|
|
|
|
|
def response(resp) -> EngineResults:
|
|
results = EngineResults()
|
|
search_res = resp.json()
|
|
|
|
for item in search_res["results"]:
|
|
|
|
results.add(
|
|
results.types.MainResult(
|
|
url='https://grokipedia.com/page/' + item["slug"],
|
|
title=item["title"],
|
|
content=html_to_text(item["snippet"]),
|
|
)
|
|
)
|
|
|
|
return results
|