diff options
author | Bnyro <bnyro@tutanota.com> | 2023-08-10 16:12:53 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2023-08-10 23:51:07 +0200 |
commit | c76c999a1eeecae265573b12e81ae74f56988820 (patch) | |
tree | c8eb124392f023d28ef74828d1e0d1cd58f8be85 | |
parent | e25d1c7288417a5a3773e0b592900156b246234b (diff) | |
download | searxng-c76c999a1eeecae265573b12e81ae74f56988820.tar.gz searxng-c76c999a1eeecae265573b12e81ae74f56988820.zip |
[feat] engine: implementation of anaconda
-rw-r--r-- | searx/settings.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index e3f3421fc..d7d5d2c48 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -328,6 +328,20 @@ engines: enable_http: true shortcut: ah + - name: anaconda + engine: xpath + paging: true + first_page_num: 0 + search_url: https://anaconda.org/search?q={query}&page={pageno} + results_xpath: //tbody/tr + url_xpath: ./td/h5/a[last()]/@href + title_xpath: ./td/h5 + content_xpath: ./td[h5]/text() + categories: it + timeout: 6.0 + shortcut: conda + disabled: true + - name: arch linux wiki engine: archlinux shortcut: al |