diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-05-28 15:56:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-28 15:56:01 +0200 |
| commit | da111f7fec1c377696ed33a3c97cb5665bb01ab9 (patch) | |
| tree | 3a2e04b93efedb31f0424bd666d9b132cbb5d2dc | |
| parent | 54e783f3b1dc0772c02c119cd2bb315e6bbbe811 (diff) | |
| parent | a4b07460441bb8ce7be3205cff4cc473aaf45505 (diff) | |
Merge pull request #108 from return42/dogpile
[enh] add metasearch engin dogpile.com (XPath)
| -rw-r--r-- | searx/settings.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 85d3717ea..1675bcca7 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1354,6 +1354,25 @@ engines: require_api_key: false results: HTML + - name: dogpile + shortcut: dp + engine: xpath + paging: true + page_size: 9 + # Doesn't work without the 'sc' parameter + search_url: https://www.dogpile.com/serp?q={query}&page={pageno}&sc=Gp0GqqlRVflv20 + url_xpath: //span[@class="web-bing__url"] + title_xpath: //a[@class="web-bing__title"] + content_xpath: //span[@class="web-bing__description"] + categories: general + timeout: 3.0 + disabled: true + about: + website: https://www.dogpile.com + wikidata_id: Q3595363 + 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. |