diff options
| -rw-r--r-- | searx/settings.yml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 7b9c5968e..c3d35ee2e 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -768,6 +768,23 @@ engines: shortcut : nt disabled : True + - name: mankier + engine: json_engine + paging: true + search_url: https://www.mankier.com/api/v2/mans/?q={query} + results_query: results + url_query: url + title_query: name + content_query: description + categories: it + shortcut: man + about: + website: https://www.mankier.com/ + official_api_documentation: https://www.mankier.com/api + use_official_api: true + require_api_key: false + results: JSON + - name : openairedatasets engine : json_engine paging : True @@ -870,6 +887,26 @@ engines: categories: science timeout : 3.0 + - name: pypi + shortcut: pypi + engine: xpath + paging: true + search_url : https://pypi.org/search?q={query}&page={pageno} + results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"] + url_xpath: ./@href + title_xpath: ./h3/span[@class="package-snippet__name"] + content_xpath: ./p + suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"] + first_page_num: 1 + categories: it + about: + website: https://pypi.org + wikidata_id: Q2984686 + official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html + use_official_api: false + require_api_key: false + results: HTML + - name : qwant engine : qwant shortcut : qw |