diff options
author | nexryai <gnomer@tuta.io> | 2023-01-12 16:28:09 +0900 |
---|---|---|
committer | nexryai <gnomer@tuta.io> | 2023-01-12 16:28:09 +0900 |
commit | 4e7bb1bf9ab84a8c73ee565afbe13727e51e1e96 (patch) | |
tree | b56b5814affa2610d4107d68d22d34fba5ed8df6 | |
parent | afd71a6c0fb2dad424ec184517e0425e457b85cf (diff) | |
download | searxng-4e7bb1bf9ab84a8c73ee565afbe13727e51e1e96.tar.gz searxng-4e7bb1bf9ab84a8c73ee565afbe13727e51e1e96.zip |
Add goo engine
-rw-r--r-- | searx/settings.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 2226a12de..7efaf33e8 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1967,6 +1967,26 @@ engines: require_api_key: false results: HTML + - name: goo + shortcut: goo + engine: xpath + paging: true + search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0 + url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href + title_xpath: //div[@class="result"]/p[@class='title fsL1']/a + content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p + first_page_num: 0 + categories: [general, web] + disabled: true + timeout: 4.0 + about: + website: https://search.goo.ne.jp + wikidata_id: Q249044 + use_official_api: false + require_api_key: false + results: HTML + language: ja + # Doku engine lets you access to any Doku wiki instance: # A public one or a privete/corporate one. # - name: ubuntuwiki |