diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2022-08-10 17:45:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-10 17:45:28 +0200 |
commit | 5706d110f2580a9c84618060d017a92405cf44e2 (patch) | |
tree | 950144beb91cd848e8aca2f88da071d574a49048 /searx | |
parent | 07342899e5412d5ba03195f1ebbb7cb5ea525556 (diff) | |
parent | 90bdb2375698715b954b836ad2459c2ba285887c (diff) | |
download | searxng-5706d110f2580a9c84618060d017a92405cf44e2.tar.gz searxng-5706d110f2580a9c84618060d017a92405cf44e2.zip |
Merge pull request #1650 from joxcat/eng-librs
Add lib.rs engine
Diffstat (limited to 'searx')
-rw-r--r-- | searx/settings.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 12d1f93f7..4e96d024f 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1846,6 +1846,23 @@ engines: require_api_key: false results: HTML + - name: lib.rs + shortcut: lrs + engine: xpath + search_url: https://lib.rs/search?q={query} + results_xpath: /html/body/main/div/ol/li/a + url_xpath: ./@href + title_xpath: ./div[@class="h"]/h4 + content_xpath: ./div[@class="h"]/p + categories: [it, packages] + disabled: true + about: + website: https://lib.rs + wikidata_id: Q113486010 + use_official_api: false + require_api_key: false + results: HTML + # Doku engine lets you access to any Doku wiki instance: # A public one or a privete/corporate one. # - name: ubuntuwiki |