logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: 2db807368c549029a5f1fc8b20d0fcd56627cc5e
parent 9ee8e552da4654cd41228ce1a3addfa1fa1f377d
Author: Noémi Ványi <sitbackandwait@gmail.com>
Date:   Thu, 18 May 2017 21:34:54 +0200

[enh] make search type of mediawiki configurable

Diffstat:

Msearx/engines/mediawiki.py6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/searx/engines/mediawiki.py b/searx/engines/mediawiki.py @@ -21,6 +21,7 @@ categories = ['general'] language_support = True paging = True number_of_results = 1 +search_type = 'nearmatch' # possible values: title, text, nearmatch # search-url base_url = 'https://{language}.wikipedia.org/' @@ -30,7 +31,7 @@ search_postfix = 'w/api.php?action=query'\ '&format=json'\ '&sroffset={offset}'\ '&srlimit={limit}'\ - '&srwhat=nearmatch' # search for a near match in the title + '&srwhat={searchtype}' # search for a near match in the title # do search-request @@ -39,7 +40,8 @@ def request(query, params): string_args = dict(query=urlencode({'srsearch': query}), offset=offset, - limit=number_of_results) + limit=number_of_results, + searchtype=search_type) format_strings = list(Formatter().parse(base_url))