diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2022-08-06 13:12:39 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2022-08-06 13:21:28 +0200 |
commit | 647e6187d7a46dfb9b619284207d865dc9927a9d (patch) | |
tree | d0608ea0e11dec2ed3aadfa341b80bb793f808a6 /searx | |
parent | cee586029cd2afa54cf0f47db13b35702aa45d8d (diff) | |
download | searxng-647e6187d7a46dfb9b619284207d865dc9927a9d.tar.gz searxng-647e6187d7a46dfb9b619284207d865dc9927a9d.zip |
[mod] engine yep.com: show all 100 results yep.com has
yep.com is still in beta, the api.yep.com does not have paging support. There
is only a 'limit' argument with a maximum of 100 results.
yep.com seems fast; there is nor need for a timeout of 12 sec.
The API returns JSON nevertheless what the HTTP header is, the "show more"
button on yep.com's web site does not set a special HTTP Accept header.
FYI: The index does not support languages, the WEB UI does not offer a language
selection of the results and the entire index seems in English.
Closes: https://github.com/searxng/searxng/issues/1619
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx')
-rw-r--r-- | searx/settings.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 3694c177a..45e64ec86 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -422,18 +422,13 @@ engines: categories: general disabled: true paging: false - page_size: 10 content_html_to_text: true title_html_to_text: true - search_url: https://api.yep.com/fs/1/?type=web&q={query}&no_correct=false + search_url: https://api.yep.com/fs/1/?type=web&q={query}&no_correct=false&limit=100 results_query: 1/results title_query: title url_query: url content_query: snippet - timeout: 12.0 - headers: - 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8' - 'Sec-Fetch-Dest': 'document' about: website: https://yep.com use_official_api: false |